


:root {
  --sidebar-width: 260px;
  --transition: cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s;
  --bg-overlay: rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.16);
  --shadow-hover: 0 16px 32px -8px rgba(0, 0, 0, 0.2);
  --accent: #0c91d8;
  --accent-light: rgba(13, 110, 253, 0.1);
  --text: #222;
  --text-muted: #555555;
  --border: #e4e7ed;
  --bg-light: #f8f9fa;
  --whatsapp: #25D366;
  --success: #0c91d8;
  --danger: #dc3545;
  --warning: #0c91d8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  background: url('back3.jpg') center/cover fixed no-repeat;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  padding-left: var(--sidebar-width);
  transition: padding-left var(--transition);
  position: relative;
}

.bg-layer {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  pointer-events: none;
  z-index: -1;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  transition: transform var(--transition);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--accent);
}

.logo h1 {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-links a {
  display: flex;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  background: var(--accent-light);
  color: var(--accent);
}

.contact-block {
  margin-top: auto;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.contact-block a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-block a:hover {
  color: var(--accent);
}

.whatsapp {
  color: var(--whatsapp);
}

/* Main Content */
.main {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.98);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card h2, .card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card img {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.2s ease;
  text-align: center;
}

.whatsapp-btn {
  background: var(--whatsapp);
}

.email-btn {
  background: var(--accent);
}

.call-btn {
  background: var(--success);
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.location-section {
  margin-top: 3rem;
}

.map-wrapper {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 530px;
  border: 0;
}

.footer {
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Package Specific Styles */
.package-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 2rem 0;
}

.package {
  background: rgba(255, 255, 255, 0.98);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent);
}

.package:nth-child(2) {
  border-top-color: var(--success);
}

.package:nth-child(3) {
  border-top-color: var(--warning);
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0;
}

.package:nth-child(2) .price {
  color: var(--success);
}

.package:nth-child(3) .price {
  color: var(--warning);
}

.features {
  list-style: none;
  margin: 1.5rem 0;
}

.features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.package:nth-child(2) .features li::before {
  color: var(--success);
}

.package:nth-child(3) .features li::before {
  color: var(--warning);
}

.terms {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}

/* Service Specific Styles */
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(rgba(6, 133, 162, 0.6), rgba(0, 0, 0, 0.6)), 
              url('shop-interior.jpg') center/cover no-repeat;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.brand-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
}

.brand-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(60%);
  transition: all 0.3s ease;
}

.brand-logos img:hover {
  filter: none;
  transform: scale(1.1);
}

/* Owner Image */
.owner-image {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow);
}

/* Improved Location Section */
.location-section {
  margin: 3rem 0;
}

.location-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.location-section p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.store-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hours {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 1rem;
}

.store-hours h4 {
  margin-bottom: 0.5rem;
  color: white;
}

.store-hours p {
  margin: 0.25rem 0;
  color: #eee;
  text-align: left;
}

/* Testimonials */
.testimonials {
  margin: 3rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.rating {
  color: var(--warning);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.customer {
  font-weight: 600;
  color: var(--text);
}

/* Hero Banner with Large Logo */
.hero-banner-large {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('background.jpg') center/cover no-repeat;
  padding: 4rem 2rem 3rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
}

.hero-logo {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero-tagline h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  line-height: 1.3;
}

.hero-tagline p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    padding-left: 0;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    background: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: all 0.3s ease;
  }

  .hamburger .bar::before,
  .hamburger .bar::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text);
    left: 0;
    transition: all 0.3s ease;
  }

  .hamburger .bar::before {
    top: -6px;
  }

  .hamburger .bar::after {
    top: 6px;
  }

  .hamburger[aria-expanded="true"] .bar {
    background: transparent;
  }

  .hamburger[aria-expanded="true"] .bar::before {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"] .bar::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main {
    padding: 1.25rem;
  }

  .location-container {
    grid-template-columns: 1fr;
  }

  .store-hours p {
    font-size: 0.9rem;
  }

  .hero-banner-large {
    padding: 3rem 1rem 2rem;
  }

  .hero-tagline h1 {
    font-size: 1.8rem;
  }

  .hero-tagline p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cards,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .hero-banner-large {
    padding: 2rem 1rem 1.5rem;
  }

  .hero-tagline h1 {
    font-size: 1.5rem;
  }

  .hero-tagline p {
    font-size: 0.9rem;
  }

  .hero-logo {
    max-height: 120px;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-banner-large {
    padding: 3rem 1.5rem 2rem;
  }

  .hero-logo {
    max-height: 160px;
  }

  .hero-tagline h1 {
    font-size: 2rem;
  }

  .hero-tagline p {
    font-size: 1.1rem;
  }
}

/* Desktop Enhancements */
@media (min-width: 1025px) {
  .sidebar {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
  }

  .card {
    min-height: 300px;
  }

  .package {
    min-height: 450px;
    display: flex;
    flex-direction: column;
  }

  .package .btn {
    margin-top: auto;
  }
}

/* Downloads Page Styles */
.download-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.download-intro {
  text-align: center;
  margin-bottom: 25px;
}

.download-intro h2 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.download-intro p {
  color: #7f8c8d;
}

.download-table-container {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.download-table th {
  background-color: #3498db;
  color: white;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
}

.download-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #ecf0f1;
  color: #34495e;
}

.download-table tr:hover {
  background-color: #f8f9fa;
}

.download-link {
  display: inline-block;
  padding: 8px 15px;
  background-color: #00c3ff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s;
}

.download-link:hover {
  background-color: #ff0505;
  transform: translateY(-1px);
}

.download-disclaimer {
  padding: 15px;
  background-color: #f8f9fa;
  border-left: 4px solid #e74c3c;
  border-radius: 4px;
  font-size: 0.9em;
  color: #7f8c8d;
}

@media (max-width: 600px) {
  .download-table th, 
  .download-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  
  .download-link {
    padding: 6px 10px;
  }
}

.category-header {
  background-color: #fefffe;
  font-weight: bold;
  color: #2c3e50;
  border-left: 4px solid #03f377;
}

.category-header td {
  padding: 10px 15px;
  font-size: 1.1em;
}

.download-table tr:not(.category-header):hover {
  background-color: #f8f9fa;
}

body {
  background-color: #fff1e6; /* Very soft peach-white */
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  width: 100%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('contact-bg.jpg') center/cover no-repeat;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  color: var(--text);
  line-height: 1.6;
}

.info-card a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 500;
}

.map-container {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .contact-form,
  .info-card {
    padding: 1.25rem;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-form h2,
  .info-card h3 {
    font-size: 1.2rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.9rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

/* Icons */
.icon {
  margin-right: 0.5rem;
  color: var(--accent);
}

/* Button Enhancements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-btn {
  background-color: var(--whatsapp);
  color: white;
}

.call-btn {
  background-color: var(--success);
  color: white;
}

.email-btn {
  background-color: var(--accent);
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Logo Subtitle */
.logo-subtitle {
  font-size: 0.65rem;
  color: #666;
  margin-top: 4px;
}

/* Gallery Styles */
.gallery-container {
  margin: 2rem 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5rem 1rem;
}

/* Sitemap Specific Styles */
.sitemap-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sitemap-column {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.sitemap-column:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.sitemap-column h2 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.sitemap-column ul {
  list-style: none;
}

.sitemap-column li {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}

.sitemap-column li:before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.sitemap-column a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-column a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Business Card Preview */
.business-card-preview {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 3rem 0;
  text-align: center;
}

.business-card-preview h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.business-card-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  max-height: 300px;
}

.download-link .btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

/* Responsive Adjustments for Sitemap */
@media (max-width: 768px) {
  .sitemap-container {
    grid-template-columns: 1fr;
  }
  
  .business-card-preview {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sitemap-column {
    padding: 1.25rem;
  }
  
  .business-card-img {
    max-height: 250px;
  }
}

/* Service Page Styles */
.service-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content {
  padding: 0 1rem;
}

.config-details {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.config-row {
  display: flex;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.config-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.config-label {
  font-weight: 600;
  width: 150px;
  color: var(--text);
}

.config-value {
  color: var(--text-muted);
}

.setup-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1rem 0;
  border: 1px solid var(--border);
}

.service-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.service-intro h2 {
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.firewall-info {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
  text-align: center;
}

.firewall-info h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.info-content {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: left;
}

.service-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Disclaimer notes styling */
.disclaimer-note {
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 4px 4px 0;
}

.disclaimer-note i {
  color: #ff9800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.disclaimer-note.secondary {
  background-color: #e8f5e9;
  border-left-color: #4caf50;
  margin: 10px 0;
  padding: 10px 15px;
}

.disclaimer-note.secondary i {
  color: #2e7d32;
}

.full-width-disclaimer {
  background-color: #ffebee;
  border-top: 2px solid #f44336;
  border-bottom: 2px solid #f44336;
  padding: 15px;
  margin: 30px 0 0;
  font-size: 0.85rem;
}

.full-width-disclaimer p {
  margin: 0;
  color: #c62828;
}


/* Service Terms Page Specific Styles */
.terms-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}



/* Service Terms Page Specific Styles */
.terms-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 20px;
}

.terms-section {
  background: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.terms-section h2 {
  color: #2c3e50;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-top: 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section h3 {
  color: #34495e;
  margin: 20px 0 10px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-section p {
  margin: 10px 0;
}

/* Highlight Boxes */
.warning-highlight {
  background: #fff8e1;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

.danger-highlight {
  background: #ffebee;
  border-left: 4px solid #f44336;
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

.info-highlight {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 15px;
  margin: 15px 0;
  border-radius: 0 4px 4px 0;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .terms-section {
    padding: 15px;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .hero-tagline h1 {
    font-size: 2rem;
  }
}

/* For Option 3 */
.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}



/* General styling for all options */
.developer-credit, .dev-credit {
  font-size: 1.0em;
  color: #000000;
  margin-left: 10px;
}

.developer-credit a, .dev-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.developer-credit a:hover, .dev-credit a:hover {
  color: #ff0000; /* Or your brand color */
}



/* Footer */
    .footer {
      margin-top: 3rem;
      text-align: center;
      padding: 1.5rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.95);
      border-radius: var(--radius);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-title {
      color: var(--text);
    }

    .developer-credit {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .developer-links {
      display: flex;
      gap: 0.5rem;
    }

    .dev-link {
      color: var(--text-muted);
      transition: color 0.3s;
    }

    .dev-link:hover {
      color: var(--accent);
    }

    /* .full-width-disclaimer {
      background-color: #ffebee;
      border-top: 2px solid #f44336;
      border-bottom: 2px solid #f44336;
      padding: 15px;
      margin: 30px 0 0;
      font-size: 0.85rem;
      border-radius: var(--radius);
    } */


