/*
Theme Name: WP Softech
Theme URI: https://wpsoftech.com
Description: A professional WordPress theme for digital agencies. Expert WordPress development, WooCommerce Development, SEO Services & Digital Agency Solutions.
Version: 1.0.0
Author: WP Softech
Author URI: https://wpsoftech.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpsoftech
Domain Path: /languages
Tags: business, digital-agency, woocommerce, ecommerce, seo, responsive, custom-logo, featured-images
Requires at least: 5.9
Requires PHP: 7.4
*/

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --cream: #f7f4ef;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --gray-soft: #f0ede8;
  --gray-mid: #8a8680;
  --gray-dark: #3a3632;
  --accent: #1a1a2e;
  --text: #1c1917;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(12px);
  border-bottom: 0;
  padding: 3% 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-dark);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 11px 26px;
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5% 0 8%;
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0d0d1a 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 34px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #dbb960;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 380px;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 32px 28px;
  transition: background 0.3s;
}

.stat-card:hover {
  background: rgba(201, 168, 76, 0.07);
}

.stat-card:nth-child(1) {
  border-radius: 16px 0 0 0;
}

.stat-card:nth-child(2) {
  border-radius: 0 16px 0 0;
}

.stat-card:nth-child(3) {
  border-radius: 0 0 0 16px;
}

.stat-card:nth-child(4) {
  border-radius: 0 0 16px 0;
}

.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SECTION COMMON ── */
section {
  padding: 100px 8%;
}

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 560px;
  line-height: 1.8;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

/* ── SERVICES ── */
.services {
  background: var(--cream);
}

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

.service-item {
  background: var(--white);
  padding: 44px 36px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-item:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 24px;
}

.service-icon img{
	max-width:100%;
}

.service-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-item p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom:20px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gray-soft);
  color: var(--gray-dark);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 36px;
}

.why-list li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
}

.why-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.why-content p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}

.why-visual {
  background: var(--black);
  border-radius: 16px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.tech-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.tech-section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

/* ── PROCESS ── */
.process {
  background: var(--black);
  color: var(--white);
}

.process .section-title {
  color: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
}

.process-step {
  padding: 36px 24px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.process-step:last-child {
  border-right: none;
}

.step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.5);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── SEO SECTION ── */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.seo-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.seo-feature {
  background: var(--cream);
  padding: 24px;
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.seo-feature h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.seo-feature p {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

.rank-visual {
  background: var(--black);
  border-radius: 16px;
  overflow: hidden;
}

.rank-header {
  padding: 20px 24px;
  background: rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.rank-header span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.rank-items {
  padding: 8px 0;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.rank-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rank-pos {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  width: 32px;
  flex-shrink: 0;
}

.rank-pos.top {
  color: #4ade80;
}

.rank-keyword {
  flex: 1;
}

.rank-keyword strong {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.rank-keyword span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.rank-change {
  font-size: 12px;
  font-weight: 700;
}

.rank-change.up {
  color: #4ade80;
}

/* ── PACKAGES ── */
.packages {
  background: var(--cream);
}

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

.pkg-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: all 0.3s;
}

.pkg-card.featured {
  background: var(--black);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
}

.pkg-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pkg-price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.pkg-card.featured .pkg-price {
  color: var(--white);
}

.pkg-period {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 28px;
}

.pkg-card.featured .pkg-period {
  color: rgba(255, 255, 255, 0.5);
}

.pkg-features {
  list-style: none;
  margin-bottom: 36px;
}

.pkg-features li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-card.featured .pkg-features li {
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
}

.check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.pkg-btn-light {
  background: var(--black);
  color: var(--white);
}

.pkg-btn-light:hover {
  background: var(--gold);
  color: var(--black);
}

.pkg-btn-gold {
  background: var(--gold);
  color: var(--black);
}

.pkg-btn-gold:hover {
  background: #dbb960;
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--cream);
  padding: 36px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial::before {
  content: '"';
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 900;
  color: var(--gold);
  line-height: 0.8;
  display: block;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
}

.testi-role {
  font-size: 12px;
  color: var(--gray-mid);
}

.stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 8% 36px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 250px;
  margin-bottom: 18px;
  filter: invert(1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  padding: 28px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 22px;
}

.trust-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.1);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 6% 60px;
  }

  .hero-visual {
    display: none;
  }

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

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

  .packages .pkg-grid {
    grid-template-columns: 1fr;
  }

  .pkg-card.featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .seo-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .trust-bar {
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .seo-features {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT PAGE STYLES ── */
.contact-hero {
	background: var(--black);
	padding: 120px 8% 80px;
	position: relative;
	overflow: hidden;
	margin-top: 72px;
}
.contact-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
	                  linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}
.contact-hero::after {
	content: '';
	position: absolute;
	top: -40%;
	right: -10%;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
	pointer-events: none;
}
.contact-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 680px;
}
.contact-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1px solid rgba(201,168,76,.3);
	padding: 7px 16px;
	border-radius: 2px;
	margin-bottom: 24px;
}
.contact-hero h1 {
	font-family: var(--serif);
	font-size: clamp(36px, 4.5vw, 62px);
	font-weight: 900;
	line-height: 1.06;
	color: var(--white);
	margin-bottom: 18px;
}
.contact-hero h1 em {
	color: var(--gold);
	font-style: italic;
}
.contact-hero p {
	font-size: 17px;
	color: rgba(255,255,255,.55);
	line-height: 1.8;
	max-width: 520px;
}

/* ── BREADCRUMB ── */
.contact-breadcrumb {
	background: var(--cream);
	padding: 14px 8%;
	border-bottom: 1px solid rgba(0,0,0,.05);
}
.contact-breadcrumb ol {
	list-style: none;
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.contact-breadcrumb li {
	font-size: 13px;
	color: var(--gray-mid);
}
.contact-breadcrumb li + li::before {
	content: '›';
	margin-right: 8px;
	color: var(--gold);
}
.contact-breadcrumb a {
	color: var(--gray-mid);
	text-decoration: none;
	transition: color .2s;
}
.contact-breadcrumb a:hover { color: var(--gold); }
.contact-breadcrumb li:last-child { color: var(--text); font-weight: 600; }

/* ── MAIN CONTACT SECTION ── */
.contact-main {
	padding: 90px 8%;
	background: var(--white);
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 72px;
	align-items: start;
}

/* ── LEFT — INFO PANEL ── */
.contact-info-panel {}
.contact-info-panel .section-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold);
	display: block;
	margin-bottom: 12px;
}
.contact-info-panel h2 {
	font-family: var(--serif);
	font-size: clamp(26px, 2.8vw, 38px);
	font-weight: 900;
	line-height: 1.1;
	color: var(--text);
	margin-bottom: 14px;
}
.contact-info-panel > p {
	font-size: 15px;
	color: var(--gray-mid);
	line-height: 1.8;
	margin-bottom: 36px;
}
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 40px;
}
.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-detail-item:last-child { border-bottom: none; }
.cd-icon-wrap {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background: rgba(201,168,76,.08);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-top: 2px;
}
.cd-icon-wrap img {
    width: 25px;
}
.cd-content {}
.cd-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gray-mid);
	margin-bottom: 4px;
}
.cd-value {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
}
.cd-value a {
	color: var(--text);
	text-decoration: none;
	transition: color .2s;
}
.cd-value a:hover { color: var(--gold); }

/* ── RESPONSE TIME BADGE ── */
.response-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--cream);
	border-left: 3px solid var(--gold);
	padding: 16px 20px;
	border-radius: 0 6px 6px 0;
	margin-bottom: 32px;
}
.rb-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
	animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .6; transform: scale(1.3); }
}
.rb-text strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}
.rb-text span {
	font-size: 12px;
	color: var(--gray-mid);
}

/* ── SOCIAL LINKS ── */
.contact-social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.social-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 16px;
	background: var(--gold);
	color: rgba(255,255,255,.7);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: .04em;
	transition: all .2s;
}
.social-link:hover {
	background: var(--gold);
	color: var(--black);
	transform: translateY(-2px);
}
.contact-social img {
    width: 25px;
}
/* ── RIGHT — CF7 FORM PANEL ── */
.contact-form-panel {
	background: var(--cream);
	border-radius: 16px;
	padding: 48px 44px;
	position: relative;
	overflow: hidden;
}
.contact-form-panel::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(201,168,76,.06);
	pointer-events: none;
}
.form-panel-header {
	margin-bottom: 32px;
}
.form-panel-header h3 {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 900;
	color: var(--text);
	margin-bottom: 6px;
}
.form-panel-header p {
	font-size: 14px;
	color: var(--gray-mid);
	line-height: 1.7;
}
.form-panel-header .free-tag {
	display: inline-block;
	background: var(--gold);
	color: var(--black);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 2px;
	margin-bottom: 10px;
}

/* ── CF7 OVERRIDES ── */
.wpcf7 {
	font-family: var(--sans) !important;
}
.wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 14px 16px;
	background: var(--white);
	border: 1.5px solid rgba(0,0,0,.1);
	border-radius: 4px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--text);
	transition: border-color .25s, box-shadow .25s;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #b0aba5;
	font-size: 14px;
}
.wpcf7 select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8680' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
	cursor: pointer;
}
.wpcf7 textarea {
	min-height: 130px;
	resize: vertical;
}
.wpcf7 label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--gray-dark);
	margin-bottom: 7px;
	letter-spacing: .02em;
}
.wpcf7 .wpcf7-not-valid-tip {
	font-size: 12px;
	color: #e53e3e;
	margin-top: 5px;
	display: block;
}
.wpcf7 .wpcf7-response-output {
	margin: 16px 0 0 !important;
	padding: 14px 18px !important;
	border-radius: 6px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	border: none !important;
}
.wpcf7 .wpcf7-mail-sent-ok {
	background: #f0fdf4 !important;
	color: #166534 !important;
	border-left: 4px solid #4ade80 !important;
}
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked {
	background: #fef2f2 !important;
	color: #991b1b !important;
	border-left: 4px solid #f87171 !important;
}
.wpcf7 .wpcf7-validation-errors {
	background: #fffbeb !important;
	color: #92400e !important;
	border-left: 4px solid var(--gold) !important;
}
.wpcf7 input[type="submit"] {
	width: 100%;
	background: var(--black);
	color: var(--white);
	padding: 16px 32px;
	border: none;
	border-radius: 4px;
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s, transform .15s, box-shadow .25s;
	margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
	background: var(--gold);
	color: var(--black);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.wpcf7 input[type="submit"]:active {
	transform: translateY(0);
}
.wpcf7 .ajax-loader {
	display: none !important;
}

/* ── FORM GRID ROWS ── */
.cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.cf7-row-full {
	margin-bottom: 16px;
}
.cf7-submit-row {
	margin-top: 8px;
}

/* ── TRUST ICONS BELOW FORM ── */
.form-trust-strip {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(0,0,0,.06);
}
.fts-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--gray-mid);
	font-weight: 500;
}
.fts-icon { font-size: 14px; }

/* ── MAP / LOCATION SECTION ── */
.contact-location {
	padding: 0 8% 90px;
	background: var(--white);
}
.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: stretch;
}
.map-wrap {
	border-radius: 12px;
	overflow: hidden;
	min-height: 340px;
	background: var(--cream);
	border: 1px solid rgba(0,0,0,.06);
}
.map-wrap iframe {
	width: 100%;
	height: 100%;
	min-height: 340px;
	border: none;
	display: block;
}
.location-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 24px;
}
.location-info h3 {
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 900;
	color: var(--text);
	margin-bottom: 4px;
}
.location-info p {
	font-size: 15px;
	color: var(--gray-mid);
	line-height: 1.75;
}
.hours-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	background: var(--cream);
	border-radius: 10px;
	overflow: hidden;
}
.hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 20px;
	border-bottom: 1px solid rgba(0,0,0,.05);
	font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--text); }
.hours-time { color: var(--gray-mid); }
.hours-time.open { color: #16a34a; font-weight: 600; }
.hours-time.closed { color: #dc2626; }

/* ── FAQ MINI ── */
.contact-faq {
	padding: 90px 8%;
	background: var(--cream);
}
.faq-mini-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 48px;
}
.faq-mini-card {
	background: var(--white);
	padding: 28px 28px;
	border-radius: 10px;
	border-left: 3px solid transparent;
	transition: all .3s;
}
.faq-mini-card:hover {
	border-left-color: var(--gold);
	box-shadow: 0 8px 32px rgba(0,0,0,.06);
	transform: translateY(-2px);
}
.faq-mini-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 8px;
}
.faq-mini-card p {
	font-size: 13px;
	color: var(--gray-mid);
	line-height: 1.75;
}

/* ── CTA STRIP ── */
.contact-cta-strip {
	background: var(--black);
	padding: 64px 8%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.contact-cta-strip h3 {
	font-family: var(--serif);
	font-size: clamp(22px, 2.5vw, 34px);
	font-weight: 900;
	color: var(--white);
	margin-bottom: 6px;
}
.contact-cta-strip p {
	font-size: 15px;
	color: rgba(255,255,255,.5);
}
.cta-strip-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	flex-shrink: 0;
}
.btn-gold-solid {
	background: var(--gold);
	color: var(--black);
	padding: 13px 28px;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .25s;
	display: inline-block;
}
.btn-gold-solid:hover {
	background: #dbb960;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-ghost-white {
	border: 1px solid rgba(255,255,255,.25);
	color: var(--white);
	padding: 13px 28px;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .25s;
	display: inline-block;
}
.btn-ghost-white:hover {
	border-color: var(--gold);
	color: var(--gold);
}

/* ── FADE UP ── */
.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.contact-layout { grid-template-columns: 1fr; }
	.location-grid { grid-template-columns: 1fr; }
	.faq-mini-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.contact-hero { padding: 100px 5% 60px; }
	.contact-main { padding: 60px 5%; }
	.contact-form-panel { padding: 32px 24px; }
	.cf7-row { grid-template-columns: 1fr; }
	.contact-location { padding: 0 5% 60px; }
	.contact-faq { padding: 60px 5%; }
	.contact-cta-strip { padding: 48px 5%; }
}
/* LEARN MORE BUTTON */
  .learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    padding: 11px 22px;
    border: 1.5px solid var(--black);
    border-radius: 3px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color 0.28s ease, border-color 0.28s ease;
    margin-top: auto;
  }
  .learn-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
  }
  .learn-btn:hover::before { transform: scaleX(1); }
  .learn-btn:hover { color: var(--white); }
  .learn-btn span, .learn-btn .arrow { position: relative; z-index: 1; }
  .learn-btn .arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.22s ease;
  }
  .learn-btn:hover .arrow { transform: translateX(4px); }

  /* Gold variant for highlighted card */
  .service-card.featured .learn-btn {
    border-color: var(--gold);
    color: var(--gold);
  }
  .service-card.featured .learn-btn::before { background: var(--gold); }
  .service-card.featured .learn-btn:hover { color: var(--white); }
  .service-card.featured::before { transform: scaleX(1); }

a {
    outline: none !important;
}