:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --color-primary: #0071e3;
  --color-primary-hover: #005bb5;
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-text: #1d1d1f;
  --color-text-light: #6e6e73;
  --color-border: #d2d2d7;
  --color-star: #f5a623;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --max-width: 1200px;
  --gap: 2rem;
}

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

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

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

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.advert-badge {
  font-size: 0.85rem;
  color: var(--color-text-light);
  background: #f2f2f4;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-weight: 500;
}

.main-content {
  flex: 1;
  padding: 2rem 0;
}

.content-grid {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
}

.article {
  flex: 1;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.breadcrumb .current {
  color: var(--color-text);
  font-weight: 500;
}

.trending-badge {
  display: inline-block;
  background: #fff2e5;
  color: #c45500;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  gap: 0.4rem;
}

.rating .stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--color-star);
  font-size: 1.1rem;
}

.rate-value {
  font-weight: 700;
  color: var(--color-text);
  margin-left: 0.3rem;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-align: right;
}

.hero-figure {
  margin-bottom: 2rem;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-caption {
  text-align: center;
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.article-body {
  font-size: 1.05rem;
  color: var(--color-text);
}

.article-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.article-body p {
  margin-bottom: 1.2rem;
}

.article-body figure {
  margin: 1.5rem 0;
}

.article-body figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.cta-wrapper {
  margin: 2rem 0 0.5rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  background: var(--color-primary);
  color: #fff;
}

.btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

.scroll-to-form {
  cursor: pointer;
}

.sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.sidebar-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.sidebar .stars {
  margin-bottom: 1.2rem;
  color: var(--color-star);
}

.enquiry-section {
  background: var(--color-surface);
  padding: 3rem 1.5rem;
  margin-top: 3rem;
}

.section-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  background: #fff;
}

.checkbox-group {
  margin-top: 0.4rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 0.15rem;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
}

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

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

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-contact p {
  margin-bottom: 0.2rem;
  color: var(--color-text-light);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #888;
  max-width: 600px;
  line-height: 1.5;
}

.footer-copy {
  border-top: 1px solid var(--color-border);
  padding-top: 1.2rem;
  width: 100%;
  color: var(--color-text-light);
}

.mobile-sticky {
  display: none;
}

.thanks-body {
  background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thanks-content {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  word-break: break-word;
}
section {
  overflow: hidden;
}
.thanks-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0,113,227,0.2));
}

.thanks-message {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.thanks-message strong {
  color: var(--color-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 1.5rem 0 0.8rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .content-grid {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .article {
    padding: 1.25rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating {
    align-self: flex-start;
  }

  .form-row {
    flex-direction: column;
  }

  .mobile-sticky {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-surface);
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
    .advert-badge {
      display: none;
    }
}