@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3b3c44;           /* Dark charcoal for headings and primary text */
  --secondary: #108dbd;         /* Blue for secondary elements */
  --accent: #04d2c3;            /* Bright teal for CTAs and highlights */
  --success: #15b178;           /* Green for success states */
  --info: #1d8481;              /* Teal variant for info elements */
  --dark-teal: #25637e;         /* Darker teal for backgrounds */
  --medium-teal: #2c635e;       /* Medium teal for cards */
  --slate: #2f5060;             /* Slate for subtle backgrounds */
  --dark-green: #344f50;        /* Dark green for footer */
  --teal-accent: #246c6a;       /* Teal accent for borders */
  --text: #2c2d35;
  --text-light: #4a4b52;
  --text-dark: #1a1b20;
  --bg: #ffffff;
  --bg-light: #f8fffe;
  --border: #e8f4f3;
  --shadow: rgba(59, 60, 68, 0.1);
  --shadow-hover: rgba(59, 60, 68, 0.15);
}

/* Global */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  background: #f0f8f7;
  line-height: 1.7;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1.5rem 0;
  color: var(--text-light);
}

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

.section {
  padding: 80px 0;
}

.section-small {
  padding: 60px 0;
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 20px;
}

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

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

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Prevent images from overflowing */
img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  background: var(--dark-teal);
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.logo-link {
  display: block;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: block;
}

.logo-link:hover .logo-img {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-signature {
  max-width: 450px;
  height: auto;
  width: 100%;
}

.navbar-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.navbar-cta .btn {
  padding: 12px 24px;
  font-weight: 600;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-teal);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-menu .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .navbar-cta .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Hero section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(4, 210, 195, 0.05) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.hero-image {
  text-align: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
  background-image: url('/static/images/Logo_with_signature.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  padding: 40px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Section styling */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

.bg-light {
  background: var(--bg-light);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--info));
  color: white;
  border-radius: 20px;
  margin-bottom: 24px;
}

.list {
  padding-left: 18px;
}

/* Service cards */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.service-card h3 {
  color: var(--primary);
  margin: 0 0 16px 0;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 20px;
  background-image: url('/static/images/Logo_with_signature.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  padding: 40px;
}

.about-img.logo-signature {
  height: auto;
  max-height: 600px;
  background: none;
  object-fit: contain;
  padding: 40px;
  margin: 20px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(59, 60, 68, 0.08);
  border: 1px solid rgba(4, 210, 195, 0.1);
  transition: all 0.3s ease;
}

.about-img.logo-signature:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(59, 60, 68, 0.12);
  border-color: rgba(4, 210, 195, 0.2);
}

.about-img.logo-signature:before {
  content: none;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: #1d8481;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 210, 195, 0.3);
}

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

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

.button,
button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button:hover,
button:hover {
  background: #1d8481;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 210, 195, 0.3);
}

/* Booking Widget */
.booking-widget {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  border: 1px solid var(--border);
}

/* Booking Section */
.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.booking-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 210, 195, 0.1);
  background: white;
}

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

.btn-full {
  width: 100%;
}

.contact-info {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-item {
  flex: 1;
  min-width: 250px;
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .booking-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-form {
    padding: 30px 20px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-item {
    min-width: auto;
  }
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-section h4,
.footer-section h5 {
  color: white;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Floating call button */
.float-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(4, 210, 195, 0.4);
  transition: all 0.3s ease;
}

.float-call:hover {
  background: var(--info);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(4, 210, 195, 0.5);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 10px 0;
  z-index: 9999;
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cookie overlay - dims rest of page */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  display: none; /* hidden by default */
}

/* Cookie popup container */
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.privacy-link {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #555;
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover animations */
.section h3 {
  transition: color 0.3s ease;
}

.section h3:hover {
  color: var(--accent);
}

/* Enhanced transitions */
a, button, .service-card, .button {
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Loading animation for buttons */
button:active {
  transform: scale(0.98);
}

/* About Page Styles */
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 400;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 20px;
  background-image: url('/static/images/Logo_with_signature.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  padding: 40px;
}

.about-details-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.qualifications-list {
  list-style: none;
  padding: 0;
}

.qualifications-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 24px;
}

.qualifications-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.qualifications-list li:last-child {
  border-bottom: none;
}

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

.approach-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
}

.approach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--dark-teal));
  color: white;
  border-radius: 20px;
  margin: 0 auto 24px;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .about-hero-content,
  .about-details-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-main-img {
    height: 300px;
  }
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--medium-teal);
  color: white;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-method-content h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
}

.contact-method-content p {
  margin: 0 0 4px 0;
}

.contact-method-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

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

.contact-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
}

.contact-form select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(4, 210, 195, 0.1);
  background: white;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-label input:checked + .checkmark:after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px var(--shadow);
  border: 1px solid var(--border);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.faq-item p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-method {
    padding: 20px;
  }
}

/* Pricing Page Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-hover);
}

.pricing-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
}

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

.pricing-badge {
  background: var(--success);
  color: white;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(15deg);
  box-shadow: 0 2px 10px rgba(21, 177, 120, 0.3);
}

.pricing-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.pricing-header h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
}

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

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

.pricing-features {
  padding: 0 30px 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 30px;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--success);
  font-weight: bold;
  width: 20px;
  height: 20px;
  background: rgba(21, 177, 120, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  padding: 0 30px 40px;
}

/* Special Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.offer-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  border: 1px solid var(--border);
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.offer-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.new-price {
  font-size: 1.8rem;
  color: var(--success);
  font-weight: 700;
}

.discount {
  font-size: 2rem;
  color: var(--success);
  font-weight: 700;
}

.offer-card h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.offer-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }
  
  .pricing-badge {
    top: 15px;
    right: -25px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .pricing-header {
    padding: 30px 20px 20px;
  }
  
  .pricing-features {
    padding: 0 20px 20px;
  }
  
  .pricing-footer {
    padding: 0 20px 30px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

/* Team Section Styles */
.team-section {
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(59, 60, 68, 0.1);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(59, 60, 68, 0.15);
}

.team-photo {
  margin-bottom: 24px;
}

.team-photo img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--accent);
  box-shadow: 0 4px 16px rgba(4, 210, 195, 0.2);
  transform: scale(1.1);
}

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

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-description {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  
  .team-member {
    padding: 24px;
  }
  
  .team-photo img {
    width: 200px;
    height: 200px;
  }
  
  .team-info h3 {
    font-size: 1.2rem;
  }
}

/* Blog Styles */
.blog-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, rgba(4, 210, 195, 0.05) 100%);
  color: var(--primary);
}

.blog-search-form {
  width: 100%;
  margin: 0;
}

.search-input-container {
  margin-bottom: 16px;
}

.search-input {
  width: 100%;
  border: 2px solid var(--border);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  color: var(--text);
  background: white;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 60, 68, 0.05);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(4, 210, 195, 0.15);
}

.search-input::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.search-btn {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  width: 100%;
  box-shadow: 0 4px 12px rgba(4, 210, 195, 0.3);
}

.search-btn-text {
  font-family: inherit;
}

.search-btn:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 210, 195, 0.4);
}

.search-btn:focus {
  outline: none;
}

.search-btn:active {
  transform: translateY(0);
}

.blog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.sidebar-widget h3 {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.3;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-list li {
  margin-bottom: 0;
}

.category-list a {
  color: var(--text);
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.category-list a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.category-list a:hover {
  background: white;
  color: var(--primary);
  transform: translateX(8px);
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(59, 60, 68, 0.08);
}

.category-list a:hover::before {
  transform: scaleY(1);
}

.category-list a.active {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(4, 210, 195, 0.25);
  border-color: var(--accent);
}

.category-list a.active::before {
  background: rgba(255, 255, 255, 0.3);
  transform: scaleY(1);
}

.cta-widget {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
}

.cta-widget h3,
.cta-widget p {
  color: white;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  margin-bottom: 18px;
}

.category-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.category-badge:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.blog-card h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-excerpt {
  color: var(--text-dark);
  margin-bottom: 24px;
  flex: 1;
  line-height: 1.7;
  font-size: 15px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-meta-info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.pagination-nav {
  text-align: center;
  margin-top: 40px;
}

.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.pagination li a,
.pagination li span {
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.pagination li a:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.pagination li.active span {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.no-posts {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}

.no-posts h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Blog Post Detail Styles */
.post-header {
  background: linear-gradient(135deg, var(--dark-teal), var(--medium-teal));
  color: white;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: white;
}

.breadcrumbs span {
  color: rgba(255,255,255,0.6);
  margin: 0 8px;
}

.post-category {
  margin-bottom: 15px;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.meta-separator {
  color: rgba(255,255,255,0.5);
}

.post-excerpt {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.post-featured-image {
  margin-bottom: 40px;
}

.featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.post-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.post-main {
  max-width: 100%;
}

.post-body {
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  line-height: 1.9;
  border: 1px solid var(--border);
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin-top: 50px;
  margin-bottom: 25px;
}

.post-body h2:first-child,
.post-body h3:first-child,
.post-body h4:first-child {
  margin-top: 0;
}

.post-body h2 {
  color: var(--primary);
  font-size: 1.9rem;
  line-height: 1.3;
}

.post-body h3 {
  color: var(--secondary);
  font-size: 1.6rem;
  line-height: 1.4;
}

.post-body h4 {
  color: var(--primary);
  font-size: 1.3rem;
  line-height: 1.4;
}

.post-body p {
  margin-bottom: 26px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
}

.post-body ul,
.post-body ol {
  margin-bottom: 26px;
  padding-left: 32px;
}

.post-body li {
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.7;
}

.post-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text);
}

.post-body strong {
  color: var(--primary);
  font-weight: 600;
}

.post-footer {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.post-share {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.post-share h4 {
  margin-bottom: 20px;
  color: var(--primary);
}

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

.share-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0a66c2;
  color: white;
}

.share-btn.copy-link {
  background: var(--accent);
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.post-cta {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
}

.post-cta h3,
.post-cta p {
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.post-sidebar {
  position: sticky;
  top: 100px;
}

.related-posts,
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-post,
.recent-post {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.related-post-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

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

.related-post-content h4,
.recent-post h4 {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.related-post-content h4 a,
.recent-post h4 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-content h4 a:hover,
.recent-post h4 a:hover {
  color: var(--accent);
}

.related-post-content time,
.recent-post time {
  font-size: 12px;
  color: var(--text-light);
}

.contact-widget {
  background: linear-gradient(135deg, var(--dark-teal), var(--medium-teal));
  color: white;
}

.contact-widget h3,
.contact-widget p,
.contact-widget a {
  color: white;
}

.contact-info a {
  text-decoration: none;
}

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

/* Category Page Styles */
.category-hero {
  background: linear-gradient(135deg, var(--dark-teal), var(--medium-teal));
  color: white;
}

.category-description {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

.category-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.category-nav {
  margin-bottom: 40px;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-blog:hover {
  color: var(--secondary);
  transform: translateX(-3px);
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .blog-layout,
  .post-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .blog-sidebar,
  .post-sidebar {
    position: static;
    order: 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .post-header h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .post-body {
    padding: 32px 24px;
  }
  
  .post-footer {
    padding: 32px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .sidebar-widget {
    padding: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .search-btn-text {
    display: none;
  }
  
  .search-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .blog-card-content {
    padding: 24px;
  }
  
  .blog-card h3 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .post-meta {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .post-body {
    padding: 24px 20px;
    font-size: 15px;
  }
  
  .post-body h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .post-body h3 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 18px;
  }
  
  .post-body p,
  .post-body li {
    margin-bottom: 20px;
  }
  
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .category-list a {
    padding: 12px 16px;
    font-size: 15px;
  }
}