/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --bg: #030712;
  --bg-soft: #080c14;
  --surface: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #C5A47E;
  --accent-soft: rgba(197, 164, 126, 0.15);
  --danger: #ef4444;
  --teal: #2dd4bf;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1200px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(197, 164, 126, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3C%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* Background Elements */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -100px;
  left: -150px;
}

/* Layout Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.cities-list {
  column-count: 4;
  column-gap: 40px;
  list-style: none;
  padding: 0;
}

@media (max-width: 992px) {
  .cities-list {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .cities-list {
    column-count: 1;
  }
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 0;
}

.header.scrolled {
  padding: 16px 0;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(197, 164, 126, 0.3));
}

.brand-text strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-serif);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

.brand-oab {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 1px;
}

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

.nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:not(.btn):hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:not(.btn):hover,
.nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #030712;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(197, 164, 126, 0.4);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--muted);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* Glass Cards */
.card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  border-color: rgba(197, 164, 126, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.5rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card li {
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card li::before {
  content: "•";
  color: var(--accent);
  font-size: 1.2rem;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.blog-post {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}

.blog-image {
  aspect-ratio: 16/9;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.blog-post h3 {
  font-size: 1.25rem;
}

.blog-post p {
  color: var(--muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

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

.contact-form-wrap {
  position: relative;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, var(--accent-soft), transparent 70%);
  z-index: -1;
  opacity: 0.5;
}

input,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: var(--text);
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

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

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
/* Professional Blog Layout Styles */
.breadcrumb-section {
  padding: 140px 0 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .current {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
}

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

.blog-main {
  min-width: 0;
  /* Prevent grid breakout */
}

/* Post Details */
.post-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--line);
}

.post-image-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.post-category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #030712;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.post-meta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.post-meta-item {
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-details h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 40px;
}

.post-body-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.post-body-content p {
  margin-bottom: 30px;
}

.post-footer {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.post-tags a {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  margin-left: 8px;
  transition: 0.3s;
}

.post-tags a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.post-share {
  display: flex;
  gap: 15px;
  align-items: center;
}

.share-icon {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}

.share-icon:hover {
  color: var(--accent);
}

.author-bio {
  margin-top: 60px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 40px;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  color: #030712;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 4px solid var(--line);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.author-info p {
  color: var(--muted);
  font-size: 1rem;
}

/* Sidebar Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.widget {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius-md);
}

.widget h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.category-widget ul {
  list-style: none;
  padding: 0;
}

.category-widget li {
  margin-bottom: 12px;
}

.category-widget a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--muted);
  transition: 0.3s;
}

.category-widget a:hover {
  color: var(--accent);
}

.recent-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Sidebar & Widgets */
.widget {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}

.widget h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  margin-bottom: 16px;
}

.widget ul li a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.widget ul li a:hover {
  color: var(--accent);
}

.recent-posts-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recent-post-item {
  display: flex;
  gap: 16px;
  text-decoration: none !important;
  color: var(--text) !important;
  transition: transform 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(5px);
}

.rp-img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.rp-info h4 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--text);
  transition: color 0.3s ease;
}

.recent-post-item:hover h4 {
  color: var(--accent);
}

.rp-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.tag-cloud a:hover {
  background: var(--accent);
  color: #030712;
}

.section-head-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.view-all-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.view-all-link span {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.view-all-link:hover {
  border-bottom-color: var(--accent);
}

.view-all-link:hover span {
  transform: translateX(5px);
}

/* Responsive fixes */
@media (max-width: 1024px) {
  :root {
    --container: 900px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-layout-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .blog-sidebar {
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
  }

  .nav-wrap {
    padding: 0 5px;
  }

  .brand {
    gap: 12px;
    max-width: 70%;
  }

  .brand-icon {
    font-size: 1.5rem;
  }

  .brand-text strong {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .brand-name {
    font-size: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .brand-oab {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--line);
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
  }

  .nav.active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .nav a {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    margin: 0 !important;
  }

  .nav a:last-of-type {
    border-bottom: none;
    margin-top: 30px !important;
    max-width: 280px;
  }

  .hero {
    padding: 100px 0 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
    padding-bottom: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-brand .brand {
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-brand p {
    margin: 0 auto 24px;
    font-size: 0.95rem;
    max-width: 300px;
  }

  .footer-links, .footer-regions {
    width: 100%;
    text-align: center;
  }

  .footer-links h4, .footer-regions h4 {
    margin-bottom: 20px;
  }

  .footer-links ul, .footer-regions ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .footer-regions ul li {
    display: flex;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 30px 0 !important;
    margin-top: 20px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .hero-text {
    font-size: 1rem;
    margin-inline: auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 40px;
    border-radius: var(--radius-lg);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Blog Details Mobile */
  .post-header h1 {
    font-size: 1.8rem !important;
  }

  .post-meta-wrap {
    gap: 12px;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .author-avatar {
    margin-inline: auto;
  }

  .post-footer {
    flex-direction: column;
    text-align: center;
  }
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}