/*
Theme Name: Indian Dream Studio
Theme URI: https://indiandreamstudio.com
Author: Indian Dream Studio
Author URI: https://indiandreamstudio.com
Description: A luxurious, cinematic WordPress theme for Indian Dream Studio — India's favourite photo destination with 50+ exclusive design sets across 2.5 acres in Jaipur. Features dark/light mode, scroll animations, and a modern photography portfolio layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dreamscape
Tags: photography, portfolio, one-page, custom-background, custom-logo, dark-mode
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ===== CSS VARIABLES ===== */
:root {
  --background: 40 20% 96%;
  --foreground: 20 20% 15%;
  --card: 40 15% 92%;
  --card-foreground: 20 20% 15%;
  --primary: 38 65% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 35 12% 88%;
  --secondary-foreground: 20 15% 25%;
  --muted: 35 10% 90%;
  --muted-foreground: 20 8% 45%;
  --accent: 28 72% 45%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 35 10% 85%;
  --input: 35 10% 82%;
  --ring: 38 65% 45%;
  --radius: 0.25rem;
}

.dark {
  --background: 20 14% 4%;
  --foreground: 38 15% 88%;
  --card: 20 10% 8%;
  --card-foreground: 38 15% 88%;
  --primary: 38 65% 50%;
  --primary-foreground: 20 30% 8%;
  --secondary: 20 8% 12%;
  --secondary-foreground: 38 15% 82%;
  --muted: 20 6% 14%;
  --muted-foreground: 30 8% 50%;
  --accent: 28 72% 45%;
  --accent-foreground: 38 15% 95%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 30 6% 15%;
  --input: 30 6% 20%;
  --ring: 38 65% 50%;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: hsl(var(--background)) !important;
}

body {
  background-color: hsl(var(--background)) !important;
  color: hsl(var(--foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Kill WordPress default content wrapper */
.wp-site-blocks,
.entry-content,
.page-content,
.post-content-wrap,
body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--primary) / 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--primary) / 0.45); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ===== COMPONENT CLASSES ===== */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .section-heading { font-size: 1.875rem; } }
@media (min-width: 768px) { .section-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3rem; } }

.section-subheading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: hsl(var(--primary));
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
}
@media (min-width: 768px) { .section-subheading { font-size: 0.875rem; } }

.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }
.italic { font-style: italic; }

.gold-separator {
  width: 4rem;
  height: 2px;
  background-color: hsl(var(--primary));
  margin-left: auto;
  margin-right: auto;
}

.gold-separator--left {
  margin-left: 0;
  margin-right: 0;
}

.glass-card {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  transition: all 0.5s;
}

.glass-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 40px hsl(var(--primary) / 0.1);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  transition: all 0.3s;
  font-family: 'DM Sans', system-ui, sans-serif;
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
  box-shadow: 0 0 30px hsl(var(--primary) / 0.3);
  color: hsl(var(--primary-foreground));
}

.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid hsl(var(--primary) / 0.5);
  color: hsl(var(--primary));
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  transition: all 0.3s;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: transparent;
  cursor: pointer;
}

.cta-outline:hover {
  background-color: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  color: hsl(var(--foreground) / 0.6);
  cursor: pointer;
  transition: color 0.3s;
  border-radius: var(--radius);
}
.btn-ghost:hover { color: hsl(var(--primary)); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  border-radius: var(--radius);
  transition: all 0.3s;
  background: transparent;
  color: hsl(var(--foreground));
}
.btn-outline-sm:hover { border-color: hsl(var(--primary) / 0.5); color: hsl(var(--primary)); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
}

.navbar--transparent {
  background: linear-gradient(to bottom, hsl(var(--background) / 0.8), transparent);
}

.navbar--scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .navbar__brand { font-size: 1.5rem; } }

.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 1024px) { .navbar__links { display: flex; } }

.navbar__links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--foreground) / 0.6);
  transition: color 0.3s;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.navbar__links a:hover { color: hsl(var(--primary)); }

.navbar__actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .navbar__actions { display: flex; } }

.navbar__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.25rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .navbar__mobile-toggle { display: none; } }

.navbar__mobile-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  background: hsl(var(--background) / 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid hsl(var(--border) / 0.5);
  animation: fadeIn 0.3s ease;
}

.mobile-menu.is-open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--foreground) / 0.7);
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
  display: block;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: hsl(var(--primary)); }

.mobile-menu__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.6);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.3), hsl(var(--background) / 0.1));
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .hero__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 6rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 8rem; } }

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__stats-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: 'Playfair Display', Georgia, serif;
}
@media (min-width: 640px) { .hero__stats-number { font-size: 3rem; } }
@media (min-width: 768px) { .hero__stats-number { font-size: 3.75rem; } }

.hero__stats-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--foreground) / 0.7);
  text-align: left;
  line-height: 1.4;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary) / 0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section--alt { background: hsl(var(--secondary) / 0.3); }

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header p.text-muted-foreground {
  max-width: 42rem;
  margin: 0 auto;
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-accent {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  border: 2px solid hsl(var(--primary) / 0.3);
}
@media (min-width: 1024px) { .about-image-accent { display: block; } }

.ideal-for-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .ideal-for-grid { grid-template-columns: 1fr 1fr; } }

.ideal-for-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.ideal-for-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.ideal-for-item span {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.8);
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card { cursor: pointer; height: 100%; }

.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover .service-card__image img { transform: scale(1.1); }

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.9), hsl(var(--background) / 0.2), transparent);
}

.service-card__image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.service-card__image-title h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-card__body {
  padding: 1.5rem;
  padding-top: 0.75rem;
}

.service-card__body p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ===== GALLERY / SETS GRID ===== */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) { .sets-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (min-width: 1024px) { .sets-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.set-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: hsl(var(--card));
}

.set-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.set-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background) / 0.9), hsl(var(--background) / 0.1), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}

.set-card:hover .set-card__overlay { opacity: 1; }

.set-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(0.5rem);
  transition: transform 0.5s;
}

.set-card:hover .set-card__content { transform: translateY(0); }

.set-card__content h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .set-card__content h3 { font-size: 1rem; } }

.set-card__content p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  opacity: 0;
  transition: opacity 0.5s 0.1s;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.set-card:hover .set-card__content p { opacity: 1; }

/* ===== ACTIVITIES ===== */
.activities-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .activities-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.activity-icon {
  padding: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  flex-shrink: 0;
}

.activity-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.activity-item h3 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.activity-item p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

.activities-visual {
  position: relative;
}

.activities-visual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.activities-visual__grid .col-offset {
  margin-top: 2rem;
}

.activities-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.activities-visual__accent {
  display: none;
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid hsl(var(--primary) / 0.2);
}
@media (min-width: 1024px) { .activities-visual__accent { display: block; } }

/* ===== CORPORATE ===== */
.corporate-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(to left, hsl(var(--primary) / 0.05), transparent);
  pointer-events: none;
}

.corporate-grid {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .corporate-grid { grid-template-columns: 1fr 1fr; } }

.corporate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
}

.corporate-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.corporate-item span {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.8);
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing-card__meta {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

.pricing-card__price-wrap {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.pricing-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.pricing-card__price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-card__price svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.pricing-card__price span {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  padding: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.contact-item h3 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
}

.contact-item a:hover { color: hsl(var(--primary)); }

.contact-map {
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .contact-map {
    aspect-ratio: unset;
    height: 100%;
  }
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid hsl(var(--border) / 0.5);
  background: hsl(var(--secondary) / 0.2);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; } }

.footer__brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-family: 'DM Sans', system-ui, sans-serif;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  padding: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  transition: background 0.3s;
}
.footer__social a:hover { background: hsl(var(--primary) / 0.2); }

.footer__social svg { width: 1rem; height: 1rem; }

.footer__links h4, .footer__contact h4 {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer__links nav { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.footer__links a:hover { color: hsl(var(--primary)); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer__contact-item p, .footer__contact-item a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
}
.footer__contact-item a:hover { color: hsl(var(--primary)); }

.footer__copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border) / 0.3);
  text-align: center;
}

.footer__copyright p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.whatsapp-btn:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; }

/* ===== SCROLL REVEAL ANIMATION ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.scroll-reveal--left {
  transform: translateX(-40px);
}

.scroll-reveal--right {
  transform: translateX(40px);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up { animation: fadeUp 0.8s ease forwards; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1.0s; }
.delay-1200 { animation-delay: 1.2s; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.font-body { font-family: 'DM Sans', system-ui, sans-serif; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== WordPress Core Styles ===== */
.wp-caption { max-width: 100%; margin-bottom: 1.5rem; }
.wp-caption-text { font-size: 0.75rem; color: hsl(var(--muted-foreground)); text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ===== PAGE BANNER (standalone pages) ===== */
.page-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.page-banner__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1rem 4rem;
}

.page-banner__title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .page-banner__title { font-size: 3rem; } }
@media (min-width: 768px) { .page-banner__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .page-banner__title { font-size: 4.5rem; } }

/* ===== PRICING FEATURES LIST ===== */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

.pricing-features__item svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* ===== ACTIVE NAV LINK ===== */
.navbar__links a.is-active,
.mobile-menu a.is-active {
  color: hsl(var(--primary));
}

/* ===== CONTACT FORM ===== */
.ds-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  font-family: 'DM Sans', system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.15);
}

.form-input::placeholder {
  color: hsl(var(--muted-foreground) / 0.6);
}

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

select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ===== BLOG ARCHIVE ===== */
.blog-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

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

.blog-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

.blog-card__meta svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--primary));
}

.blog-card__category {
  color: hsl(var(--primary));
  font-weight: 500;
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s;
}

.blog-card:hover .blog-card__title {
  color: hsl(var(--primary));
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-family: 'DM Sans', system-ui, sans-serif;
  flex: 1;
}

.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--primary));
  font-weight: 500;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: gap 0.3s;
}

.blog-card:hover .blog-card__readmore {
  gap: 0.75rem;
}

.blog-card__readmore svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card__readmore svg {
  transform: translateX(2px);
}

/* ===== SINGLE POST ===== */
.single-post-header {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.single-post-header__bg {
  position: absolute;
  inset: 0;
}

.single-post-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.4), hsl(var(--background) / 0.1));
}

.single-post-header__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 6rem 1rem 3rem;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
}

.single-post-meta svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
}

.single-post-meta__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.single-post-meta__cat {
  color: hsl(var(--primary));
  font-weight: 500;
}

.single-post-title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .single-post-title { font-size: 2.5rem; } }
@media (min-width: 768px) { .single-post-title { font-size: 3rem; } }

/* Post Content */
.post-content {
  max-width: 48rem;
  margin: 0 auto;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: hsl(var(--foreground) / 0.85);
  font-size: 1.05rem;
  line-height: 1.85;
}

.post-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.post-content h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.post-content h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: hsl(var(--primary) / 0.8);
}

.post-content img {
  border-radius: var(--radius);
  margin: 2rem 0;
}

.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content blockquote {
  border-left: 3px solid hsl(var(--primary));
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: hsl(var(--card) / 0.5);
  font-style: italic;
  color: hsl(var(--foreground) / 0.9);
}

.post-content blockquote p {
  margin-bottom: 0;
}

.post-content pre {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 2rem 0;
  font-size: 0.875rem;
}

.post-content code {
  background: hsl(var(--card));
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.9em;
}

.post-content pre code {
  background: none;
  padding: 0;
}

/* Post Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.post-tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  border-radius: var(--radius);
  transition: all 0.3s;
}

.post-tag:hover {
  border-color: hsl(var(--primary) / 0.5);
  color: hsl(var(--primary));
}

/* Post Navigation */
.post-nav {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}
@media (min-width: 640px) { .post-nav { grid-template-columns: 1fr 1fr; } }

.post-nav__item {
  padding: 1.25rem;
  transition: border-color 0.3s;
}

.post-nav__label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--primary));
  font-family: 'DM Sans', system-ui, sans-serif;
  margin-bottom: 0.5rem;
}

.post-nav__label svg {
  width: 0.75rem;
  height: 0.75rem;
}

.post-nav__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.post-nav__next { text-align: right; }
.post-nav__next .post-nav__label { justify-content: flex-end; }

/* Pagination (archive) */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.85rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  transition: all 0.3s;
  border-radius: var(--radius);
}

.blog-pagination a:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
}

.blog-pagination .current {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

/* ===== SIDEBAR ===== */
.blog-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr 300px; gap: 4rem; }
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  padding: 1.5rem;
}

.sidebar-widget h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid hsl(var(--primary) / 0.3);
}

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

.sidebar-widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.sidebar-widget li:last-child { border-bottom: none; }

.sidebar-widget a {
  font-size: 0.85rem;
  color: hsl(var(--muted-foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: color 0.3s;
}

.sidebar-widget a:hover { color: hsl(var(--primary)); }
