/* =============================================================
   NAKSHA PLANET — GLOBAL CSS SYSTEM
   Version: 1.0.0
   Stack: Hello Elementor + Elementor Pro 4.0.4
   Prefix: np-
   Author: Naksha Planet Production System
   ============================================================= */

/* =============================================================
   01. CSS VARIABLES
   ============================================================= */
:root {
  /* Brand Colors */
  --np-primary:       #D8C3A5;  /* Sandstone Beige */
  --np-secondary:     #B05A3C;  /* Royal Terracotta */
  --np-dark:          #2C2C2C;  /* Deep Charcoal */
  --np-light:         #F8F5F0;  /* Ivory White */
  --np-accent:        #C99846;  /* Heritage Gold */

  /* Utility Colors */
  --np-muted-bg:      #F2EDE6;
  --np-border:        #E5DDD4;
  --np-text-muted:    #7A7169;
  --np-white:         #FFFFFF;
  --np-overlay:       rgba(44, 44, 44, 0.35);

  /* Typography */
  --np-font-heading:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --np-font-body:     'Inter', 'Poppins', system-ui, sans-serif;

  /* Spacing */
  --np-section-pad-desktop: 80px;
  --np-section-pad-tablet:  90px;
  --np-section-pad-mobile:  70px;

  /* Layout */
  --np-container:     1180px;
  --np-content-width: 850px;
  --np-para-width:    700px;

  /* Border Radius */
  --np-radius-sm:     12px;
  --np-radius-md:     20px;
  --np-radius-lg:     32px;
  --np-radius-full:   50px;

  /* Shadows */
  --np-shadow:        0 10px 40px rgba(0, 0, 0, 0.08);
  --np-shadow-hover:  0 20px 60px rgba(0, 0, 0, 0.14);
  --np-shadow-card:   0 4px 24px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --np-transition:    0.4s ease;
  --np-transition-sm: 0.25s ease;
  --np-transition-lg: 0.6s ease;

  /* Z-Index Scale */
  --np-z-base:        1;
  --np-z-overlay:     100;
  --np-z-sticky:      998;
  --np-z-header:      999;
  --np-z-dropdown:    1000;
  --np-z-popup:       9999;

  /* Button */
  --np-btn-height:    46px;
  --np-btn-pad:       12px 24px;
}

/* =============================================================
   02. RESET & BASE
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--np-font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--np-dark);
  background-color: var(--np-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--np-secondary);
  text-decoration: none;
  transition: color var(--np-transition-sm);
}

a:hover {
  color: #8C4530;
}

ul, ol {
  list-style: none;
}

p {
  /*max-width: var(--np-para-width);*/
  line-height: 1.7;
  color: var(--np-dark);
}

/* =============================================================
   03. TYPOGRAPHY SYSTEM
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--np-font-heading);
  color: var(--np-dark);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

h4 {
  font-family: var(--np-font-body);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

h5 {
  font-family: var(--np-font-body);
  font-size: 17px;
  font-weight: 500;
}

h6 {
  font-family: var(--np-font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.np-label {
  font-family: var(--np-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--np-secondary);
}

.np-editorial-heading {
  font-family: var(--np-font-heading);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.np-display-heading {
  font-family: var(--np-font-heading);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.np-section-heading {
  font-family: var(--np-font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}

/* =============================================================
   04. LAYOUT UTILITIES
   ============================================================= */
.np-section {
  padding: var(--np-section-pad-desktop) 0;
  position: relative;
  overflow: hidden;
}

.np-section--muted {
  background-color: var(--np-muted-bg);
}

.np-section--dark {
  background-color: var(--np-dark);
  color: var(--np-light);
}

.np-section--dark h1,
.np-section--dark h2,
.np-section--dark h3,
.np-section--dark h4,
.np-section--dark p {
  color: var(--np-light);
}

.np-section--light {
  background-color: var(--np-light);
}

.np-container {
  width: 100%;
  max-width: var(--np-container);
  margin: 0 auto;
  padding: 0 40px;
}

.np-content-container {
  width: 100%;
  max-width: var(--np-content-width);
  margin: 0 auto;
}

.np-text-center {
  text-align: center;
}

.np-text-center p {
  margin: 0 auto;
}

.np-divider {
  width: 60px;
  height: 2px;
  background-color: var(--np-secondary);
  margin: 24px 0;
  border: none;
  display: block;
}

.np-divider--center {
  margin: 24px auto;
}

.np-divider--gold {
  background-color: var(--np-accent);
}

/* =============================================================
   05. GRID SYSTEM
   ============================================================= */
.np-grid {
  display: grid;
  gap: 32px;
}

.np-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.np-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.np-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.np-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* =============================================================
   06. BUTTON SYSTEM
   ============================================================= */
.np-btn
 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--np-btn-height);
  padding: var(--np-btn-pad);
  font-family: var(--np-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--np-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--np-transition),
    background-color var(--np-transition),
    color var(--np-transition),
    box-shadow var(--np-transition),
    border-color var(--np-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.np-btn:focus-visible {
  outline: 3px solid var(--np-accent);
  outline-offset: 3px;
}

/* Primary Button */
.np-btn,
.np-btn-primary
 {
  background-color: var(--np-secondary);
  color: var(--np-light);
  border-color: var(--np-secondary);
}

.np-btn:hover,
.np-btn-primary:hover {
  background-color: #8C4530;
  border-color: #8C4530;
  color: var(--np-light);
  transform: translateY(-2px);
  box-shadow: var(--np-shadow-hover);
}

/* Outline / Secondary Button */
.np-btn-outline {
  background-color: transparent;
  color: var(--np-secondary);
  border-color: var(--np-secondary);
}

.np-btn-outline:hover {
  background-color: var(--np-secondary);
  color: var(--np-light);
  transform: translateY(-2px);
  box-shadow: var(--np-shadow-hover);
}

/* Light Button (on dark backgrounds) */
.np-btn-light {
  background-color: var(--np-light);
  color: var(--np-secondary);
  border-color: var(--np-light);
}

.np-btn-light:hover {
  background-color: var(--np-primary);
  border-color: var(--np-primary);
  transform: translateY(-2px);
  box-shadow: var(--np-shadow-hover);
}

/* Gold Accent Button */
.np-btn-gold {
  background-color: var(--np-accent);
  color: var(--np-light);
  border-color: var(--np-accent);
}

.np-btn-gold:hover {
  background-color: #A87A35;
  transform: translateY(-2px);
  box-shadow: var(--np-shadow-hover);
}

/* =============================================================
   07. CARD SYSTEM
   ============================================================= */
.np-card {
  background-color: var(--np-white);
  border-radius: var(--np-radius-md);
  box-shadow: var(--np-shadow-card);
  overflow: hidden;
  transition:
    transform var(--np-transition),
    box-shadow var(--np-transition);
  border: 1px solid var(--np-border);
}

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

.np-card-body {
  padding: 36px 32px;
}

.np-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  overflow: hidden;
}

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

.np-card:hover .np-card-image img {
  transform: scale(1.06);
}

/* Package Card */
.np-package-card {
  background-color: var(--np-white);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-lg);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition:
    transform var(--np-transition),
    box-shadow var(--np-transition),
    border-color var(--np-transition);
  position: relative;
}

.np-package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--np-shadow-hover);
  border-color: var(--np-primary);
}

.np-package-card--featured {
  border-color: var(--np-secondary);
  background-color: var(--np-dark);
  color: var(--np-light);
}

.np-package-card--featured h2,
.np-package-card--featured h3,
.np-package-card--featured h4,
.np-package-card--featured p,
.np-package-card--featured li {
  color: var(--np-light);
}

.np-package-badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: var(--np-secondary);
  color: var(--np-light);
  font-family: var(--np-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--np-radius-full);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.np-package-price {
  font-family: var(--np-font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  color: var(--np-secondary);
  line-height: 1;
}

.np-package-card--featured .np-package-price {
  color: var(--np-primary);
}

.np-package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.np-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--np-dark);
  line-height: 1.5;
}

.np-package-features li::before {
  content: '✓';
  color: var(--np-secondary);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.np-package-card--featured .np-package-features li {
  color: var(--np-primary);
}

.np-package-card--featured .np-package-features li::before {
  color: var(--np-accent);
}

/* Portfolio Card */
.np-portfolio-card {
  position: relative;
  border-radius: var(--np-radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.np-portfolio-card:hover img {
  transform: scale(1.08);
}

.np-portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--np-transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.np-portfolio-card:hover .np-portfolio-card-overlay {
  opacity: 1;
}

.np-portfolio-card-info h4 {
  color: var(--np-light);
  font-family: var(--np-font-heading);
  font-size: 22px;
  margin-bottom: 4px;
}

.np-portfolio-card-info span {
  color: var(--np-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Blog / Journal Card */
.np-journal-card {
  background-color: var(--np-white);
  border-radius: var(--np-radius-md);
  overflow: hidden;
  border: 1px solid var(--np-border);
  transition:
    transform var(--np-transition),
    box-shadow var(--np-transition);
}

.np-journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--np-shadow-hover);
}

.np-journal-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.np-journal-card:hover .np-journal-card-image img {
  transform: scale(1.06);
}

.np-journal-card-body {
  padding: 28px 24px;
}

.np-journal-card-category {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--np-secondary);
  margin-bottom: 10px;
  display: block;
}

.np-journal-card-title {
  font-family: var(--np-font-heading);
  font-size: 22px;
  line-height: 1.25;
  color: var(--np-dark);
  margin-bottom: 12px;
}

.np-journal-card-excerpt {
  font-size: 15px;
  color: var(--np-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.np-journal-card-meta {
  font-size: 13px;
  color: var(--np-text-muted);
  letter-spacing: 0.04em;
}

/* Testimonial Card */
.np-testimonial-card {
  background-color: var(--np-white);
  border: 1px solid var(--np-border);
  border-radius: var(--np-radius-md);
  padding: 40px 32px;
  position: relative;
}

.np-testimonial-card::before {
  content: '\201C';
  font-family: var(--np-font-heading);
  font-size: 80px;
  color: var(--np-primary);
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
  opacity: 0.5;
}

.np-testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--np-dark);
  margin-bottom: 24px;
  font-style: italic;
  padding-top: 32px;
}

.np-testimonial-author {
  font-family: var(--np-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--np-dark);
}

.np-testimonial-location {
  font-size: 13px;
  color: var(--np-text-muted);
  margin-top: 2px;
}

/* =============================================================
   08. FORM SYSTEM
   ============================================================= */
.np-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.np-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.np-form-label {
  font-family: var(--np-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--np-dark);
  letter-spacing: 0.02em;
}

.np-form-field,
.elementor-field-type-text input,
.elementor-field-type-email input,
.elementor-field-type-tel input,
.elementor-field-type-select select,
.elementor-field-type-textarea textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  font-family: var(--np-font-body);
  font-size: 16px;
  color: var(--np-dark);
  background-color: var(--np-white);
  border: 1.5px solid var(--np-border);
  border-radius: var(--np-radius-sm);
  transition:
    border-color var(--np-transition-sm),
    box-shadow var(--np-transition-sm);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.np-form-field:focus,
.elementor-field-type-text input:focus,
.elementor-field-type-email input:focus,
.elementor-field-type-tel input:focus,
.elementor-field-type-select select:focus,
.elementor-field-type-textarea textarea:focus {
  border-color: var(--np-secondary);
  box-shadow: 0 0 0 3px rgba(176, 90, 60, 0.12);
}

.np-form-field::placeholder {
  color: var(--np-text-muted);
  font-size: 15px;
}

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

.np-form-error {
  font-size: 13px;
  color: #C0392B;
  margin-top: 4px;
}

.np-form-success {
  padding: 20px;
  background-color: #EDF7ED;
  border: 1px solid #8CC68C;
  border-radius: var(--np-radius-sm);
  color: #2E7D32;
  font-size: 15px;
  text-align: center;
}

/* =============================================================
   09. HEADER SYSTEM
   ============================================================= */
.np-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--np-z-header);
  transition:
    background-color var(--np-transition),
    box-shadow var(--np-transition),
    padding var(--np-transition);
  padding: 0;
}

.np-header--transparent {
  background-color: transparent;
}

.np-header--scrolled {
  background-color: rgba(248, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.np-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--np-container);
  margin: 0 auto;
  padding: 0 40px;
  height: 88px;
  transition: height var(--np-transition);
}

.np-header--scrolled .np-header-inner {
  height: 72px;
}

.np-logo img {
  height: 42px;
  width: auto;
  transition: height var(--np-transition);
}

.np-header--scrolled .np-logo img {
  height: 36px;
}

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

.np-nav-link {
  font-family: var(--np-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--np-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--np-transition-sm);
}

.np-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--np-secondary);
  transition: width var(--np-transition);
}

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

.np-nav-link:hover::after,
.np-nav-link--active::after {
  width: 100%;
}

.np-header-transparent .np-nav-link {
  color: var(--np-light);
}

.np-header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.np-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--np-dark);
}

/* =============================================================
   10. FOOTER SYSTEM
   ============================================================= */
.np-footer {
  background-color: var(--np-dark);
  color: var(--np-light);
  padding: 80px 0 0;
}

.np-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--np-container);
  margin: 0 auto;
  padding: 0 40px;
}

.np-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.np-footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.np-footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 245, 240, 0.7);
  max-width: 280px;
}

.np-footer-heading {
  font-family: var(--np-font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--np-primary);
  margin-bottom: 20px;
}

.np-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.np-footer-links a {
  font-size: 15px;
  color: rgba(248, 245, 240, 0.7);
  text-decoration: none;
  transition: color var(--np-transition-sm);
}

.np-footer-links a:hover {
  color: var(--np-primary);
}

.np-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(248, 245, 240, 0.7);
  margin-bottom: 12px;
}

.np-footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.np-footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(248, 245, 240, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 245, 240, 0.7);
  transition:
    border-color var(--np-transition-sm),
    color var(--np-transition-sm),
    background-color var(--np-transition-sm);
}

.np-footer-social-link:hover {
  border-color: var(--np-primary);
  color: var(--np-primary);
  background-color: rgba(216, 195, 165, 0.08);
}

.np-footer-bottom {
  margin-top: 60px;
  padding: 24px 40px;
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(248, 245, 240, 0.4);
}

.np-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.np-footer-bottom-links a {
  color: rgba(248, 245, 240, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--np-transition-sm);
}

.np-footer-bottom-links a:hover {
  color: var(--np-primary);
}

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

.np-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--np-container);
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.np-hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.np-hero-label {
  font-family: var(--np-font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--np-secondary);
}

.np-hero-title {
  font-family: var(--np-font-heading);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--np-dark);
}

.np-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--np-text-muted);
  max-width: 520px;
}

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

.np-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--np-border);
  margin-top: 8px;
}

.np-hero-trust-item {
  display: flex;
  flex-direction: column;
}

.np-hero-trust-number {
  font-family: var(--np-font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--np-secondary);
  line-height: 1;
}

.np-hero-trust-label {
  font-size: 13px;
  color: var(--np-text-muted);
}

.np-hero-image {
  position: relative;
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 11;
}

.np-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(216, 195, 165, 0.08);
  z-index: 1;
  pointer-events: none;
}

/* =============================================================
   12. SECTION COMPONENTS
   ============================================================= */

/* Trust Strip */
.np-trust-strip {
  background-color: var(--np-dark);
  padding: 32px 0;
}

.np-trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: var(--np-container);
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.np-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--np-light);
}

.np-trust-item-icon {
  color: var(--np-primary);
  font-size: 20px;
}

.np-trust-item-text {
  font-size: 14px;
  color: rgba(248, 245, 240, 0.8);
  letter-spacing: 0.02em;
}

.np-trust-item-text strong {
  color: var(--np-light);
  font-weight: 600;
}

/* Process / How It Works */
.np-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.np-process-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.np-process-number {
  font-family: var(--np-font-heading);
  font-size: 64px;
  font-weight: 600;
  color: var(--np-primary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.np-process-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(216, 195, 165, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--np-secondary);
  font-size: 24px;
  transition: background-color var(--np-transition);
}

.np-process-card:hover .np-process-icon {
  background-color: rgba(176, 90, 60, 0.12);
}

/* Section Intro Block */
.np-section-intro {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.np-section-intro .np-label {
  display: block;
  margin-bottom: 14px;
}

.np-section-intro h2 {
  margin-bottom: 16px;
}

.np-section-intro p {
  color: var(--np-text-muted);
  font-size: 17px;
  margin: 0 auto;
}

/* Founder Section */
.np-founder-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.np-founder-image {
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.np-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-founder-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.np-founder-quote {
  font-family: var(--np-font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: var(--np-dark);
  font-style: italic;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--np-secondary);
}

.np-founder-name {
  font-family: var(--np-font-body);
  font-weight: 600;
  font-size: 18px;
  color: var(--np-dark);
}

.np-founder-title {
  font-size: 15px;
  color: var(--np-text-muted);
}

/* CTA Block */
.np-cta-block {
  background-color: var(--np-dark);
  border-radius: var(--np-radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.np-cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(176, 90, 60, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.np-cta-block h2 {
  color: var(--np-light);
  margin-bottom: 16px;
}

.np-cta-block p {
  color: rgba(248, 245, 240, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
}

.np-cta-block-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Section */
.np-faq {
  max-width: 800px;
  margin: 0 auto;
}

.np-faq-item {
  border-bottom: 1px solid var(--np-border);
  padding: 0;
}

.np-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--np-font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--np-dark);
  transition: color var(--np-transition-sm);
  gap: 16px;
  user-select: none;
}

.np-faq-question:hover {
  color: var(--np-secondary);
}

.np-faq-icon {
  font-size: 20px;
  color: var(--np-secondary);
  flex-shrink: 0;
  transition: transform var(--np-transition-sm);
}

.np-faq-item--open .np-faq-icon {
  transform: rotate(45deg);
}

.np-faq-answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--np-text-muted);
  padding-bottom: 24px;
  display: none;
}

.np-faq-item--open .np-faq-answer {
  display: block;
}

/* =============================================================
   13. POPUP SYSTEM
   ============================================================= */
.np-popup {
  position: fixed;
  inset: 0;
  z-index: var(--np-z-popup);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--np-transition),
    visibility var(--np-transition);
}

.np-popup--open {
  opacity: 1;
  visibility: visible;
}

.np-popup-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(44, 44, 44, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.np-popup-inner {
  position: relative;
  z-index: 1;
  background-color: var(--np-light);
  border-radius: var(--np-radius-lg);
  padding: 56px 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--np-transition);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.np-popup--open .np-popup-inner {
  transform: translateY(0);
}

.np-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--np-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--np-text-muted);
  font-size: 18px;
  transition:
    background-color var(--np-transition-sm),
    color var(--np-transition-sm);
}

.np-popup-close:hover {
  background-color: var(--np-border);
  color: var(--np-dark);
}

.np-popup-heading {
  font-family: var(--np-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--np-dark);
  margin-bottom: 8px;
}

.np-popup-subtext {
  font-size: 15px;
  color: var(--np-text-muted);
  margin-bottom: 32px;
}

.np-popup-trust {
  font-size: 13px;
  color: var(--np-text-muted);
  text-align: center;
  margin-top: 16px;
}

.np-popup-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--np-border);
  margin-top: 24px;
  font-size: 14px;
  color: var(--np-text-muted);
}

.np-popup-whatsapp a {
  color: #25D366;
  font-weight: 500;
}

/* =============================================================
   14. ANIMATION SYSTEM
   ============================================================= */

/* Entrance Animations — triggered by scroll observer */
.np-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.np-fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.np-fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.np-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.np-zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Animated class added by IntersectionObserver */
.np-animated {
  opacity: 1;
  transform: none;
}

/* Animation Delays */
.np-delay-1 { transition-delay: 0.1s; }
.np-delay-2 { transition-delay: 0.2s; }
.np-delay-3 { transition-delay: 0.3s; }
.np-delay-4 { transition-delay: 0.4s; }
.np-delay-5 { transition-delay: 0.5s; }
.np-delay-6 { transition-delay: 0.6s; }

/* Hover Effects */
.np-hover-lift {
  transition: transform var(--np-transition), box-shadow var(--np-transition);
}

.np-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--np-shadow-hover);
}

.np-hover-zoom {
  overflow: hidden;
}

.np-hover-zoom img {
  transition: transform 0.7s ease;
}

.np-hover-zoom:hover img {
  transform: scale(1.08);
}

/* =============================================================
   15. UTILITY CLASSES
   ============================================================= */
.np-glass {
  background-color: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(216, 195, 165, 0.3);
}

.np-shadow-soft {
  box-shadow: var(--np-shadow);
}

.np-shadow-strong {
  box-shadow: var(--np-shadow-hover);
}

.np-radius {
  border-radius: var(--np-radius-md);
}

.np-radius-sm {
  border-radius: var(--np-radius-sm);
}

.np-radius-lg {
  border-radius: var(--np-radius-lg);
}

.np-overflow-hidden {
  overflow: hidden;
}

.np-relative {
  position: relative;
}

.np-flex {
  display: flex;
}

.np-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.np-gap-sm { gap: 12px; }
.np-gap-md { gap: 24px; }
.np-gap-lg { gap: 40px; }
.np-gap-xl { gap: 64px; }

.np-mt-sm { margin-top: 12px; }
.np-mt-md { margin-top: 24px; }
.np-mt-lg { margin-top: 40px; }
.np-mt-xl { margin-top: 64px; }

.np-mb-sm { margin-bottom: 12px; }
.np-mb-md { margin-bottom: 24px; }
.np-mb-lg { margin-bottom: 40px; }
.np-mb-xl { margin-bottom: 64px; }

.np-text-secondary { color: var(--np-secondary); }
.np-text-accent    { color: var(--np-accent); }
.np-text-muted     { color: var(--np-text-muted); }
.np-text-light     { color: var(--np-light); }

.np-bg-primary  { background-color: var(--np-primary); }
.np-bg-dark     { background-color: var(--np-dark); }
.np-bg-muted    { background-color: var(--np-muted-bg); }
.np-bg-light    { background-color: var(--np-light); }

.np-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================================
   16. PORTFOLIO GRID
   ============================================================= */
.np-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.np-portfolio-grid--masonry {
  grid-template-rows: masonry;
}

.np-portfolio-grid .np-portfolio-card:nth-child(2) {
  grid-row: span 2;
}

/* =============================================================
   17. JOURNAL / BLOG SYSTEM
   ============================================================= */
.np-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.np-journal-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.np-journal-featured-image {
  border-radius: var(--np-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.np-journal-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.np-journal-featured:hover .np-journal-featured-image img {
  transform: scale(1.04);
}

.np-reading-time {
  font-size: 13px;
  color: var(--np-text-muted);
  letter-spacing: 0.04em;
}

/* =============================================================
   18. SCROLL ANIMATION OBSERVER SCRIPT SUPPORT
   ============================================================= */

/* Applied via JS IntersectionObserver for performance */
[data-np-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-np-animate="fade-left"] {
  transform: translateX(-24px);
}

[data-np-animate="fade-right"] {
  transform: translateX(24px);
}

[data-np-animate="zoom"] {
  transform: scale(0.96);
}

[data-np-animate].np-animated {
  opacity: 1;
  transform: none;
}

/* =============================================================
   19. STICKY WHATSAPP CTA
   ============================================================= */
.np-whatsapp-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--np-z-sticky);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--np-transition),
    box-shadow var(--np-transition);
}

.np-whatsapp-sticky:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.np-whatsapp-sticky svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

/* =============================================================
   20. RESPONSIVE MEDIA QUERIES
   ============================================================= */

/* Tablet — 768px to 1199px */
@media (max-width: 1199px) {
  :root {
    --np-section-pad-desktop: var(--np-section-pad-tablet);
  }

  .np-container {
    padding: 0 32px;
  }

  .np-grid-2,
  .np-hero-split,
  .np-founder-section {
    gap: 48px;
  }

  .np-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .np-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .np-journal-featured {
    grid-template-columns: 1fr;
  }

  .np-header-inner {
    padding: 0 32px;
  }
}

/* Mobile — Below 767px */
@media (max-width: 767px) {
  :root {
    --np-section-pad-desktop: var(--np-section-pad-mobile);
  }

  .np-container {
    padding: 0 24px;
  }

  .np-grid-2,
  .np-grid-3,
  .np-grid-4,
  .np-hero-split,
  .np-founder-section,
  .np-journal-featured {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .np-process-grid {
    grid-template-columns: 1fr;
  }

  .np-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .np-portfolio-grid .np-portfolio-card:nth-child(2) {
    grid-row: span 1;
  }

  .np-journal-grid {
    grid-template-columns: 1fr;
  }

  .np-hero-split {
    padding: 120px 24px 80px;
  }

  .np-hero-image {
    aspect-ratio: 16 / 10;
    order: -1;
  }

  .np-hero-actions {
    flex-direction: column;
  }

  .np-hero-actions .np-btn {
    width: 100%;
    justify-content: center;
  }

  .np-trust-strip-inner {
    gap: 28px;
    flex-direction: column;
    text-align: center;
  }

  .np-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .np-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }

  .np-footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .np-cta-block {
    padding: 48px 28px;
  }

  .np-popup-inner {
    padding: 40px 24px;
    border-radius: var(--np-radius-md);
  }

  .np-header-inner {
    padding: 0 24px;
    height: 72px;
  }

  .np-nav {
    display: none;
  }

  .np-mobile-toggle {
    display: flex;
  }

  .np-section-intro {
    margin-bottom: 44px;
  }

  h1 {
    font-size: clamp(36px, 8vw, 52px);
  }

  h2 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .np-package-card {
    padding: 36px 24px;
  }

  .np-cta-block-actions {
    flex-direction: column;
    align-items: center;
  }

  .np-cta-block-actions .np-btn {
    width: 100%;
    max-width: 340px;
  }

  .np-whatsapp-sticky {
    bottom: 20px;
    right: 20px;
  }
}

/* Wide Screen — 1400px+ */
@media (min-width: 1400px) {
  .np-hero-split {
    gap: 120px;
  }

  .np-founder-section {
    gap: 100px;
  }
}

/* =============================================================
   21. ACCESSIBILITY UTILITIES
   ============================================================= */
:focus-visible {
  outline: 3px solid var(--np-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  .np-card,
  .np-package-card,
  .np-testimonial-card {
    border-width: 2px;
    border-color: var(--np-dark);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .np-fade-up,
  .np-fade-left,
  .np-fade-right,
  .np-fade-in,
  .np-zoom-in {
    opacity: 1;
    transform: none;
  }

  [data-np-animate] {
    opacity: 1;
    transform: none;
  }
}

/* Print */
@media print {
  .np-header,
  .np-whatsapp-sticky,
  .np-popup {
    display: none !important;
  }
}
/* Elementor Editor Visibility Fix */
.elementor-editor-active .np-fade-up,
.elementor-editor-active .np-fade-left,
.elementor-editor-active .np-fade-right,
.elementor-editor-active .np-fade-in,
.elementor-editor-active .np-zoom-in {
  opacity: 1 !important;
  transform: none !important;
}