@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700&family=Rubik:wght@300;400;500;600&display=swap');

/* Custom Properties for Colors: Gold and Black Theme */
:root {
  --heading-font: 'Baloo 2', cursive;
  --body-font: 'Rubik', sans-serif;
  --header-height: 64px;
  --primary-black: #1a0f0f; /* Deep black with warmth */
  --secondary-gray: #fef5f7; /* Soft rose white for card backgrounds */
  --accent-gold: #C9A227; /* Gold accent color */
  --accent-orange: #C9A227; /* Compatibility alias for existing components */
  --text-dark: #2c1820; /* Deep brown-black for text */
  --text-light: #ffffff; /* Pure white for text on dark backgrounds */
  --gold-gradient: linear-gradient(135deg, #C9A227 0%, #8A6A12 100%);
  --rose-gradient: linear-gradient(135deg, #C9A227 0%, #B8860B 100%);
  --black-gradient: linear-gradient(135deg, #1a0f0f 0%, #3d2626 100%);
  --card-shadow: 0 5px 15px rgba(201, 162, 39, 0.12); /* Soft gold shadow */
  --button-shadow: 0 4px 8px rgba(201, 162, 39, 0.2); /* Gold-tinted button shadow */
  --love-red: #C9A227; /* Primary accent color */
  --soft-rose: #E7D59A; /* Soft gold accent */
  --deep-rose: #8A6A12; /* Deep gold for depth */

  /* Creative/Artistic Additions */
  --gradient-primary: linear-gradient(135deg, #C9A227 0%, #8A6A12 100%);
  --gradient-secondary: linear-gradient(45deg, #C9A227 0%, #E7D59A 100%);
  --gradient-accent: linear-gradient(90deg, #C9A227 0%, #E7D59A 100%);
  --pattern-bg: radial-gradient(circle at 25% 25%, rgba(201,162,39,0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(201,162,39,0.08) 0%, transparent 50%);
  --artistic-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
}

/* Reset & Font Styling: Basic browser reset and global font application */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures consistent box model across elements */
}
img {
  max-width: 100%;
  height: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body {
  font-family: var(--body-font); /* body uses Rubik for a friendly, modern look */
  line-height: 1.6; /* Optimal line spacing for readability */
  color: var(--text-dark); /* Default text color */
  background: var(--pattern-bg), linear-gradient(180deg, #fff7fa 0%, #fef5f7 100%);
  background-attachment: fixed;
  padding-top: var(--header-height); /* Space for fixed header */
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(138, 106, 18, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(231, 213, 154, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Headings use the more playful "Baloo 2" for a kasi-inspired, bold personality */
h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  letter-spacing: 0.6px;
  color: var(--primary-black);
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

/* Section headings with accent underline */
section h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-black);
  display: inline-block;
  padding-bottom: 0.5rem;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Smooth scroll for modern browsers */
html { scroll-behavior: smooth; }

/* Background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(34,139,34,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(220,20,60,0.03) 0%, transparent 50%),
    linear-gradient(45deg, rgba(255,215,0,0.02) 25%, transparent 25%);
  background-size: 300px 300px, 400px 400px, 100px 100px;
  pointer-events: none;
  z-index: -1;
}

/* Container Styling: Centralizes content and applies max-width */
.container {
  width: 90%; /* Responsive width */
  max-width: 1100px; /* Maximum width for large screens */
  margin: auto; /* Centers the container horizontally */
  padding: 3rem 0; /* Vertical padding for content sections */
}

/* Header Section Styling - Creative/Artistic Design */
/* Site header and hero */
.site-header {
  background: rgba(26, 15, 15, 0.97);
  backdrop-filter: blur(20px);
  color: var(--text-light);
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
  border-bottom: 2px solid rgba(201, 162, 39, 0.2);
}

.site-header .container {
  padding: 0;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(138, 106, 18, 0.05) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="headerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(233,30,99,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23headerPattern)"/></svg>');
  pointer-events: none;
  animation: headerFlow 20s ease-in-out infinite;
}

@keyframes headerFlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.site-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(231, 213, 154, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: headerGlow 8s ease-in-out infinite alternate;
}

@keyframes headerGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding: 0;
  position: relative;
  z-index: 2;
}
.brand a { 
  display: flex; 
  align-items: center; 
  gap: 0.8rem;
  position: relative;
}
.logo { 
  width: 56px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}
.brand a:hover .logo {
  transform: scale(1.05);
}

/* Navigation */
.main-nav ul{ list-style:none; display:flex; gap:0.6rem; align-items:center; }
.main-nav a{ color:var(--text-light); text-decoration:none; padding:0.35rem 0.6rem; border-radius:999px; opacity:0.95; font-size:0.9rem; letter-spacing:0.2px; display:inline-flex; align-items:center; justify-content:center; transition:background 0.18s ease, transform 0.15s ease; }
.main-nav a:hover, .main-nav a:focus{ background: rgba(255,255,255,0.06); transform:translateY(-2px); outline:none; }

/* Call-to-action button variants - Creative/Artistic Design */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--artistic-shadow);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-secondary);
  color: var(--text-light);
  border: 2px solid transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Optional: Another overlay specifically for the header background image */
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Darker overlay for better text contrast */
  z-index: -1; /* Puts it behind header content */
}

.header-content {
  display: flex;
  flex-direction: column; /* Stacks logo, heading, and paragraph vertically */
  align-items: center; /* Centers items horizontally */
  position: relative; /* Ensure content is above the header overlay */
  z-index: 2; /* Content should be above the new header overlay */
}
.logo {
  width: 56px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand a:hover .logo {
  transform: rotate(-2deg) scale(1.04);
}

.main-nav ul li a {
  position: relative;
  overflow: hidden;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.main-nav ul li a:hover::after {
  transform: translateX(0);
}

header h1 {
  font-size: 3rem; /* Prominent heading size */
  letter-spacing: 1.5px; /* Adds a professional, spaced-out look */
  margin-bottom: 0.5rem;
}
header p {
  font-size: 1.3rem; /* Slogan text size */
  margin-top: 0.5rem;
  opacity: 0.9; /* Slightly transparent for subtle effect */
}

/* About Section Styling */
.about {
  text-align: center; /* Centers the heading and paragraph within this section */
}
.about p {
  max-width: 800px; /* Limits text line length for readability */
  margin-left: auto; /* Explicitly center the block */
  margin-right: auto; /* Explicitly center the block */
  font-size: 1.15rem;
  padding: 1.5rem 0;
}

/* Hero Section Styling - Creative/Artistic Design */
.hero-section {
  min-height: 72vh;
  background:
    linear-gradient(135deg, rgba(26, 15, 15, 0.85) 0%, rgba(80, 30, 50, 0.85) 100%),
    url('background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(231, 213, 154, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(138, 106, 18, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  animation: slideInUp 1s ease-out;
}

.hero-overlay p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  text-align: center;
  line-height: 1.7;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: slideInUp 1s ease-out 0.3s both;
}
.hero-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.press-link:hover {
  background: rgba(255, 255, 255, 0.2);
}
.center-text {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: slideInUp 1s ease-out 0.6s both;
}

/* Services Section Styling */
.services-section {
  padding: 4rem 0;
  background: #f9f9f9;
}
.services-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: linear-gradient(145deg, #fff7fa 0%, #fef5f7 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--artistic-shadow);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 60px rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.service-card h3 {
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
}

.service-card p {
  text-align: center;
  line-height: 1.6;
  color: #666;
}
  display: inline-block;
  margin-top: 1rem;
  color: var(--township-red);
  text-decoration: none;
  font-weight: bold;
}
.service-link:hover {
  text-decoration: underline;
}

/* LOQ Media packages */
.loq-packages {
  margin-top: 3rem;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
  box-shadow: var(--artistic-shadow);
  position: relative;
  overflow: hidden;
}

.loq-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(201,162,39,0.08) 0%, transparent 45%),
              radial-gradient(circle at 90% 20%, rgba(201,162,39,0.08) 0%, transparent 45%);
  pointer-events: none;
}

.loq-packages-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.loq-packages-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.package-card {
  background: linear-gradient(145deg, #fff7fa 0%, #fef5f7 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.package-card.is-premium {
  background: linear-gradient(160deg, #f5ecd0 0%, #e8d9a8 100%);
  border: 2px solid #C9A227;
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(201, 162, 39, 0.25);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gradient-secondary);
  color: var(--primary-black);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--button-shadow);
}

.package-card.is-premium .package-badge {
  background: linear-gradient(120deg, #d4af37 0%, #b88916 100%);
  color: #1a1a1a;
}

.package-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.25rem;
}

.package-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-black);
}

.package-summary {
  color: #555;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.package-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #555;
}

.package-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.package-cta {
  margin-top: auto;
  text-align: center;
}

.packages-note {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.initiative-closed {
  margin-top: 2.5rem;
  text-align: left;
  z-index: 1;
}

.initiative-closed {
  padding: 1.6rem;
  gap: 0.85rem;
}

.initiative-closed h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  text-align: left;
}

.initiative-closed p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.initiative-closed .package-list {
  gap: 0.4rem;
}

.initiative-closed .package-list li {
  font-size: 0.9rem;
}

.initiative-closed p {
  margin-bottom: 0.8rem;
  color: #555;
}

.initiative-closed .package-list {
  margin-bottom: 1rem;
}

.initiative-closed s {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.45);
}

@media (max-width: 720px) {
  .loq-packages {
    padding: 2.5rem 1.5rem;
  }
  .package-card.is-premium {
    transform: none;
  }
}

/* Latest Posts */
.latest-posts {
  padding: 4rem 0;
  background: #fff;
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.latest-card {
  background: linear-gradient(145deg, #fff7fa 0%, #fef5f7 100%);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 39, 0.08);
  transition: all 0.3s ease;
}
.latest-card:hover {
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.2);
}
.latest-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.latest-card:hover .latest-media img {
  transform: scale(1.05);
}
.latest-body {
  padding: 1.5rem;
}
.latest-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.latest-body h3 a {
  color: var(--primary-black);
  text-decoration: none;
}
.latest-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #a47575;
  margin-bottom: 0.5rem;
}
.latest-read {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
.latest-read:hover {
  color: var(--deep-rose);
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.share-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  transition: 0.2s ease;
}

.share-link:hover {
  background: rgba(0, 0, 0, 0.14);
}

@media (max-width: 768px) {
  .latest-media img {
    height: 180px;
  }
}

/* Community Section Styling - Creative/Artistic Design */
.community-section {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(51, 51, 51, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
  animation: communityPulse 8s ease-in-out infinite;
}

@keyframes communityPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.community-section h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 3rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.community-section p {
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.3rem;
  line-height: 1.7;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.community-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.feature {
  flex: 1;
  min-width: 250px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature i {
  font-size: 3rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.feature h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--township-gold);
}

/* Testimonials Section Styling */
.testimonials-section {
  padding: 4rem 0;
  background: #f9f9f9;
}
.testimonials-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-weight: bold;
  color: var(--township-red);
}

/* CTA Section Styling - Creative/Artistic Design */
.cta-section {
  padding: 6rem 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(51, 51, 51, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q5,0 10,10 T20,10 V20 H0 Z" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.15) 0%, transparent 50%);
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.cta-section h2 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 3.2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.3rem;
  line-height: 1.7;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

/* Page Hero Styling */
.page-hero {
  padding: 4rem 0;
  background: var(--secondary-gray);
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}
.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dark);
}

/* Page Content Styling */
.page-content {
  padding: 4rem 0;
  max-width: 800px;
}
.page-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
}
.page-content p, .page-content ul {
  margin-bottom: 2rem;
  line-height: 1.6;
}
.page-content ul {
  padding-left: 2rem;
}
.page-content li {
  margin-bottom: 0.5rem;
}

/* Blog Styles */
.blog-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(51,51,51,0.85) 100%), url('background.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}
.blog-hero h1,
.blog-hero p {
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: linear-gradient(145deg, #fff7fa 0%, #fef5f7 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 39, 0.08);
  transition: all 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.15);
}
.blog-card-media {
  display: block;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.blog-card-body h2 a {
  color: var(--primary-black);
  text-decoration: none;
}
.blog-card-body p {
  color: #666;
}
.blog-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8a8a8a;
  margin-bottom: 0.5rem;
}
.blog-read {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
}
.blog-read.disabled {
  color: #999;
  cursor: not-allowed;
}

.post-hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(51,51,51,0.9) 100%), url('fashion.jpg');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  text-align: center;
}
.post-hero h1,
.post-hero p {
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
.post-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.75rem;
}
.post-intro {
  max-width: 700px;
  margin: 0 auto;
}
.post-body {
  padding: 3rem 0 5rem;
  max-width: 800px;
}
.post-cover {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
}
.post-body h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-cta {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 16px;
  background: #f5f5f5;
  text-align: center;
}

@media (max-width: 768px) {
  .blog-card-media img {
    height: 180px;
  }
}

/* Divisions Section Styling - NOW WITH ITS OWN BACKGROUND IMAGE */
.divisions {
  text-align: center; /* Centers the heading within this section */
  position: relative; /* Needed for the pseudo-element overlay */
  overflow: hidden; /* Ensures background doesn't bleed out of rounded corners if applied later */
  padding: 3rem 0; /* Add padding to the section */
  background-color: #f8f8f8; /* Fallback background color for divisions */

  /* Background Image Properties specifically for the Divisions section */
  background-image: url('computer-program-code.jpg'); /* !!! IMPORTANT: REPLACE WITH YOUR DIVISIONS BACKGROUND IMAGE PATH !!! */
  background-size: cover; /* Ensures the image covers the section */
  background-attachment: scroll; /* Background scrolls with the section */
  background-position: center center; /* Centers the background image */
}
/* Optional: Semi-transparent Overlay for Divisions Section Background */
.divisions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* White overlay with 80% opacity for readability */
  z-index: 0; /* Puts the overlay behind the content of the divisions section */
}

.divisions h2 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  color: var(--primary-black);
  position: relative;
  z-index: 1;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--accent-orange) 0%,
    var(--accent-orange) 50%,
    transparent 50%,
    transparent 60%,
    var(--accent-orange) 60%,
    var(--accent-orange) 100%
  );
  background-size: 20px 100%;
  animation: moveStripes 30s linear infinite;
}

@keyframes moveStripes {
  from { background-position: 0 0; }
  to { background-position: 100px 0; }
}

/* Cool highlight effect for important text */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::before {
  content: '';
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: 0;
  height: 30%;
  background: var(--accent-orange);
  opacity: 0.2;
  transform: skew(-15deg) rotate(-1deg);
  z-index: -1;
  transition: height 0.3s ease;
}

.highlight:hover::before {
  height: 40%;
}
.cards {
  display: grid;
  /* Responsive grid: auto-fit ensures cards fill available space, minmax sets min/max width */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem; /* Space between grid items */
  margin-top: 2rem;
  position: relative; /* Ensure cards are above the overlay */
  z-index: 1;
}
.card {
  background: var(--secondary-gray);
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,140,0,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card:hover::before {
  opacity: 1;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.card:hover::after {
  transform: rotate(45deg) translate(50%, 50%);
}
.card-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-image::before {
  opacity: 1;
}
.card h3 {
  margin-bottom: 0.75rem;
  color: var(--township-blue); /* Heading color for divisions */
  font-size: 1.6rem;
}
.card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Call to Action (CTA) Section Styling */
.cta {
  background: linear-gradient(135deg, var(--township-red) 0%, var(--township-blue) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 3.5rem 1rem;
  border-radius: 5px; /* Subtle rounded corners for the entire section */
  margin-top: 3rem; /* Space from the previous section */
}
.cta h2 {
  color: var(--text-light); /* Ensures heading is visible on dark background */
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: auto auto 1.5rem auto; /* Centers paragraph and adds space below */
}
.cta .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--township-gold);
  color: var(--primary-black);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--township-gold);
  box-shadow: var(--button-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.cta .btn:hover {
  background: #e67600;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.cta .btn:hover::before {
  transform: translateX(100%);
}

/* Animated CTA arrow */
.cta .btn-primary::after {
  content: '→';
  opacity: 0;
  margin-left: -10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta .btn-primary:hover::after {
  opacity: 1;
  margin-left: 8px;
  transform: translateX(3px);
}

/* Footer Section Styling */
footer {
  background: linear-gradient(135deg, #1a0f0f 0%, #3d2626 100%);
  color: #c8a0a0; /* Rose-tinted gray for footer text */
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
}
.footer-links {
  margin: 1rem 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  background: rgba(201, 162, 39, 0.2);
  color: #E7D59A;
}
  transition: background-color 0.2s ease;
}
.footer-links a:hover {
  background-color: rgba(255,255,255,0.1);
}
.social-links {
  margin-top: 1rem;
}
.social-links a {
  margin: 0 10px; /* Space between social icons */
  display: inline-block;
  opacity: 0.8; /* Slightly transparent by default */
  transition: opacity 0.3s ease; /* Smooth fade for opacity */
}
.social-links a:hover {
  opacity: 1; /* Fully opaque on hover */
}
/* Styling for Font Awesome social icons */
.social-icon {
  font-size: 28px; /* Size of social media icons */
  color: #fff; /* White color for icons on dark background */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}
.social-icon:hover {
  color: var(--accent-orange); /* Changes color on hover */
  transform: scale(1.1); /* Icon slightly scales up on hover */
}

/* WhatsApp Floating Button Styling */
.whatsapp-float {
  position: fixed; /* Keeps the button fixed on screen */
  bottom: 25px; /* Distance from the bottom of the viewport */
  right: 25px; /* Distance from the right of the viewport */
  z-index: 999; /* Ensures button is on top of other content */
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Makes the button perfectly round */
  background-color: #25D366; /* WhatsApp brand green */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Shadow for depth */
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth hover effects */
}
/* Styling for Font Awesome WhatsApp icon */
.whatsapp-icon {
  font-size: 32px; /* Size of the WhatsApp icon */
  color: #fff; /* White color for the icon */
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-5px); /* Button lifts on hover */
  background-color: #1DA851; /* Darker green on hover */
}
.whatsapp-float:hover .whatsapp-icon { /* Target the icon within the button */
  transform: scale(1.05); /* Icon scales slightly on hover */
}

/* Homepage Highlights */
.highlights {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.03) 0%, rgba(255,140,0,0.05) 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
  transition: opacity 0.4s ease;
}

.highlight-card:hover {
  transform: translateY(-10px);
}

.highlight-card.fashion { background-image: url('fashion.jpg'); }
.highlight-card.media { background-image: url('media.jpg'); }
.highlight-card.about { background-image: url('background.jpg'); }

.highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.highlight-content h2 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.highlight-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.highlight-link {
  color: var(--accent-orange);
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-link {
  transform: translateX(5px);
}

/* Featured Quote */
.featured-quote {
  padding: 5rem 0;
  text-align: center;
  background: var(--township-blue);
  color: white;
}

.featured-quote blockquote {
  font-size: 2.5rem;
  font-family: var(--heading-font);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.featured-quote blockquote::before,
.featured-quote blockquote::after {
  content: '"';
  position: absolute;
  color: var(--accent-orange);
  font-size: 4rem;
  opacity: 0.5;
}

.featured-quote blockquote::before {
  left: -2rem;
  top: -1rem;
}

.featured-quote blockquote::after {
  right: -2rem;
  bottom: -2rem;
}

/* Quick Contact */
.quick-contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(255,140,0,0.05) 0%, rgba(44,62,80,0.05) 100%);
}

.contact-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .highlight-card {
    height: 250px;
  }
  
  .featured-quote blockquote {
    font-size: 1.8rem;
    padding: 0 2rem;
  }
  
  .featured-quote blockquote::before,
  .featured-quote blockquote::after {
    font-size: 3rem;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Small responsive adjustments for the new header/hero */
@media (max-width: 1024px){
  .hero-section {
    height: 60vh;
  }
  .hero-overlay h1 {
    font-size: 2.5rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .main-nav ul{ gap:0.6rem; }
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #0b0b0b 0%, #0f1e2b 100%);
  background-color: #0b0b0b;
  padding: 5rem 2rem 2rem;
  transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 999;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  color: #fff;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,140,0,0.05) 0%, transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 300px 300px, 100px 100px;
  pointer-events: none;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.3s ease;
  transition-delay: calc(0.1s * var(--i));
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
}

.mobile-menu ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-orange);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu ul li a:hover {
  background: rgba(255,255,255,0.12);
}

.mobile-menu ul li a:hover::before {
  transform: translateX(0);
}

/* Menu Open States */
body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-menu {
  right: 0;
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open .mobile-menu ul li {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
  backdrop-filter: blur(3px);
}

body.menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }
  body {
    background-attachment: scroll;
  }
  .hero-section {
    background-attachment: scroll;
  }
  .store-page {
    background-attachment: scroll;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav ul {
    display: none;
  }
  .logo {
    width: 52px;
  }
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .hero-overlay p {
    font-size: 1.1rem;
  }
  .site-header {
    height: var(--header-height);
  }
  .header-inner {
    height: var(--header-height);
    padding: 0;
  }
  body {
    padding-top: var(--header-height);
  }
}

@media (max-width: 600px) {
  .logo {
    width: 48px;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}

/* Forms and Coming Soon page */
.page {
  padding: 3rem 0 4rem 0;
}
.store-page {
  position: relative;
  min-height: 100vh;
  background: 
    /* Graffiti-inspired pattern */
    linear-gradient(120deg, rgba(255,140,0,0.1), rgba(44,62,80,0.1)),
    /* Urban texture */
    url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100" height="100" filter="url(%23noise)" opacity="0.08"/%3E%3C/svg%3E'),
    /* Background color with graffiti-inspired gradient */
    linear-gradient(135deg, 
      rgba(44,62,80,0.97) 0%,
      rgba(0,0,0,0.95) 100%
    );
  background-size: cover, 150px 150px, cover;
  background-attachment: fixed;
  color: white;
}

/* Graffiti pattern overlay */
.pattern-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    /* Spray paint dots */
    radial-gradient(circle at 50% 50%, rgba(255,140,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 40%),
    /* Abstract lines */
    linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,140,0,0.02) 25%, transparent 25%);
  background-size: 300px 300px, 200px 200px, 100px 100px, 100px 100px;
  background-position: 0 0, 50px 50px, 0 0, 0 0;
  pointer-events: none;
  z-index: 1;
  animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0, 50px 50px, 0 0, 0 0; }
  100% { background-position: 300px 300px, 350px 350px, 100px 100px, 100px 100px; }
}

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  margin: 2rem 0;
}

/* Update preview items for dark theme */
.preview-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
}

.preview-overlay {
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.coming-badge {
  background: var(--accent-orange);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Style updates for dark theme */
.preview-grid {
  position: relative;
  z-index: 3;
}

h1, h2, .lead {
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.note {
  color: rgba(255,255,255,0.7);
}

/* Form style updates */
.subscribe-form input[type="email"] {
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: white;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  background: rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.5);
  outline: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.subscribe-form button {
  background: var(--gradient-primary);
  border: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

/* Product Preview Grid */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

.preview-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4/3;
  transform: perspective(1000px) rotateX(0);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.preview-item:hover {
  transform: perspective(1000px) rotateX(5deg) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.preview-item:hover img {
  transform: scale(1.1);
}

.preview-item.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-orange);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.preview-item.featured:hover::before {
  transform: scaleX(1);
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 3rem 1.5rem 1.5rem;
  color: white;
  text-align: left;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all 0.5s ease;
}

.preview-item:hover .preview-overlay {
  transform: translateY(0);
  opacity: 1;
}

.preview-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.5s ease 0.1s;
}

.preview-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  transform: translateY(10px);
  transition: transform 0.5s ease 0.2s;
}

.preview-item:hover .preview-overlay h3,
.preview-item:hover .preview-overlay p {
  transform: translateY(0);
}

/* Coming soon badge */
.coming-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-orange);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  transform: rotate(5deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 3;
  transition: all 0.3s ease;
}

.preview-item:hover .coming-badge {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.subscribe-form{ display:flex; gap:0.5rem; max-width:420px; width:100%; }
.subscribe-form input[type="email"]{ flex:1; padding:0.8rem 1rem; border-radius:8px; border:1px solid rgba(0,0,0,0.1); }
.subscribe-form button{ padding:0.8rem 1rem; border-radius:8px; border:none; background:var(--accent-orange); color:#fff; font-weight:700; }
.note{ color:rgba(0,0,0,0.6); font-size:0.95rem; }

/* Responsive Adjustments: Media queries for different screen sizes */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  header p {
    font-size: 1rem;
  }
  .container {
    padding: 2rem 0;
  }
  .divisions h2 {
    font-size: 1.8rem;
  }
  .card {
    padding: 1.2rem;
  }
  .card img {
    height: 150px; /* Adjust image height for smaller screens */
  }
  .cta h2 {
    font-size: 1.8rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta .btn {
    padding: 0.7rem 1.5rem; /* Smaller button for mobile */
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-icon {
    font-size: 28px; /* Adjust WhatsApp icon size for smaller screens */
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 0.9rem;
  }
  .card h3 {
    font-size: 1.4rem;
  }
  .card p {
    font-size: 0.9rem;
  }
}

/* AdSense Styling */
.ad-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (max-width: 768px) {
  .ad-container {
    margin: 1.5rem auto;
    min-height: 60px;
  }
}

/* Fresh Testimonials Design */
.testimonials {
  padding: var(--space-lg) 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,140,0,0.15) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(255,140,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials h2 {
  color: white !important;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.testimonial-wrapper {
  position: relative;
  z-index: 1;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.emoji-tag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.3));
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .emoji-tag {
  transform: rotate(5deg) scale(1.1);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.5rem;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--accent-orange);
  font-family: var(--heading-font);
}

.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* Unique vibes for each card */
.fashion-vibe { 
  background: linear-gradient(135deg, rgba(255,140,0,0.15) 0%, rgba(255,140,0,0.05) 100%);
  transform: rotate(-1deg);
}

.digital-vibe { 
  background: linear-gradient(135deg, rgba(44,62,80,0.15) 0%, rgba(44,62,80,0.05) 100%);
}

.beauty-vibe { 
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  transform: rotate(1deg);
}

@media (max-width: 768px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Compact Site Footer */
.site-footer {
  background: linear-gradient(135deg, #1a0f0f 0%, #3d2626 100%);
  color: #c8a0a0;
  font-size: 0.8rem;
  padding: 0.75rem 0 0.25rem;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section {
  flex: 1;
  min-width: 180px;
  margin-bottom: 0.25rem;
}

.footer-section h3 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.footer-section h4 {
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.footer-section p {
  margin: 0.15rem 0;
  line-height: 1.2;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.15rem;
  display: inline-block;
  margin-right: 0.75rem;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.8rem;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.social-links a {
  color: #aaa;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--accent-gold);
}

.ssl-seal {
  text-align: center;
}

.ssl-seal img {
  max-height: 30px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #777;
}

.footer-bottom p {
  margin: 0.15rem 0;
  display: inline-block;
  margin-right: 1rem;
}

.footer-bottom p:last-child {
  margin-right: 0;
}`r`n
/* Mobile Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-section li {
    display: block;
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  
  .footer-bottom p {
    display: block;
    margin-right: 0;
  }
}
.package-card.is-featured {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 18px 45px rgba(201, 162, 39, 0.22);
  transform: translateY(-6px);
}

/* Global page rhythm polish for consistent spacing and typography */
.page-hero {
  padding: clamp(3rem, 7vw, 4.75rem) 0;
}

.page-hero .container,
.page-content.container,
.post-body.container,
.quick-contact .container,
.services-section .container,
.latest-posts .container,
.cta-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.page-content,
.post-body,
.quick-contact,
.services-section,
.latest-posts,
.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.page-content h2,
.services-section h2,
.latest-posts h2,
.post-body h2,
.quick-contact h2,
.cta-section h2 {
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.page-content p,
.page-content li,
.post-body p,
.post-body li,
.services-section p,
.latest-body p,
.quick-contact p {
  line-height: 1.75;
}

.latest-grid {
  align-items: stretch;
}

.latest-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.latest-read {
  margin-top: auto;
}

.contact-options .btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .page-hero h1,
  .post-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .page-hero p,
  .post-intro {
    font-size: 1rem;
  }

  .page-content,
  .post-body,
  .quick-contact,
  .services-section,
  .latest-posts,
  .cta-section {
    padding: 2.5rem 0;
  }

  .contact-options .btn {
    width: 100%;
    min-width: 0;
  }
}

/* In-content ad slots */
.content-ad {
  margin: 2rem auto;
  padding: 0.75rem;
  max-width: 100%;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.content-ad::before {
  content: "Sponsored";
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(44, 24, 32, 0.6);
}

/* Homepage lead conversion blocks */
.hero-points {
  list-style: none;
  margin: 0 auto 1.4rem;
  max-width: 760px;
  display: grid;
  gap: 0.55rem;
}

.hero-points li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
}

.lead-proof-section {
  padding: 2rem 0 3rem;
}

.lead-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.lead-proof-card {
  background: linear-gradient(145deg, #fff7fa 0%, #fef5f7 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--card-shadow);
}

.lead-proof-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.lead-proof-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Premium visual upgrade layer */
:root {
  --heading-font: 'Baloo 2', sans-serif;
  --body-font: 'Rubik', sans-serif;
  --primary-black: #121212;
  --secondary-gray: #fbfaf5;
  --accent-gold: #caa437;
  --accent-orange: #caa437;
  --text-dark: #1f1f1f;
  --gold-gradient: linear-gradient(135deg, #e1c164 0%, #b98b1d 100%);
  --gradient-primary: linear-gradient(135deg, #f3d784 0%, #b98b1d 100%);
  --gradient-secondary: linear-gradient(145deg, #f0d27a 0%, #b5871d 100%);
}

body {
  letter-spacing: 0.1px;
}

.container {
  width: min(92%, 1160px);
}

.site-header {
  background: rgba(18, 18, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.main-nav a {
  font-weight: 600;
}

.hero-section {
  min-height: 92vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(202, 164, 55, 0.22) 0%, transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(185, 135, 29, 0.18) 0%, transparent 30%),
    linear-gradient(120deg, rgba(7, 7, 7, 0.9) 0%, rgba(24, 24, 24, 0.72) 55%, rgba(62, 47, 14, 0.62) 100%),
    url('computer-program-code.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.36));
  backdrop-filter: blur(2px);
}

.hero-lead-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-copy .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 5.3vw, 3.85rem);
  line-height: 1.08;
}

.hero-copy .hero-tagline {
  margin: 0 0 1.2rem 0;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-points {
  margin: 0 0 1.35rem 0;
  max-width: 640px;
}

.hero-points li {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 500;
}

.hero-lead-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.33);
}

.hero-lead-card h3 {
  color: #fff;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.hero-lead-card ul {
  margin: 0 0 1rem;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-lead-card li {
  margin-bottom: 0.45rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-metrics div {
  padding: 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
}

.hero-metrics span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
}

.btn-primary {
  color: #121212;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.34);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.52);
}

section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
}

.services-grid,
.latest-grid,
.testimonials-grid {
  gap: 1.35rem;
}

.service-card,
.latest-card,
.testimonial,
.lead-proof-card,
.post-cta,
.content-ad,
.package-card {
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
}

.service-card,
.latest-card,
.lead-proof-card,
.post-cta {
  border: 1px solid rgba(202, 164, 55, 0.14);
}

.service-card:hover,
.latest-card:hover,
.package-card:hover {
  transform: translateY(-6px);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .hero-lead-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .hero-tagline,
  .hero-points {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* Premium section patterns for inner pages */
.premium-hero-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  align-items: center;
}

.premium-hero-badge {
  justify-self: end;
  width: min(320px, 100%);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(202, 164, 55, 0.24);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(245, 232, 191, 0.62));
  text-align: left;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.premium-hero-badge strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #121212;
}

.premium-hero-badge span {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.72);
}

.value-grid .value-card {
  border: 1px solid rgba(202, 164, 55, 0.18);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.process-step {
  border-radius: 14px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(202, 164, 55, 0.2);
  background: linear-gradient(150deg, #fff 0%, #fbf7ea 100%);
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  margin: 0;
  line-height: 1.7;
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.contact-panel {
  border-radius: 14px;
  padding: 1.1rem;
  border: 1px solid rgba(202, 164, 55, 0.22);
  background: linear-gradient(145deg, #fff 0%, #faf5e8 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.contact-panel h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.contact-panel p {
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .premium-hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .premium-hero-badge {
    justify-self: center;
    text-align: center;
  }
}

/* Contact map */
.map-embed {
  margin-top: 1.2rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(202, 164, 55, 0.25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-embed iframe {
    height: 260px;
  }
}



