/* =========================================
Landing3.css — Premium Luxury Design
Theme: White + Black + Burgundy + Gold
========================================= */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff; /* white background */
  color: #111;
  line-height: 1.6;
}

/* ================= HEADER ================= */
.navbar {
  background: #fff;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #d4af37; /* golden line */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo{
  font-size: 1.8rem;
  font-weight: 700;
  color: #0ABAB5;
  letter-spacing: 1px;
}

.logo span {
  color: #8A2BE2;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: #111;
  margin: 5px 0;
  transition: 0.4s;
}

/* ================= HERO BANNER ================= */
.hero-banner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 60px;
  background: linear-gradient(135deg, #000000, #4b0f23); /* Black + Burgundy gradient */
  color: #fff;
  overflow: hidden;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 14px 34px;
  background: #d4af37;
  color: #000;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #b8860b;
  color: #fff;
}

/* Hero Side Image */
.hero-image {
  max-width: 40%;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Decorative Shape Divider at Bottom */
.hero-banner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #fff;
  clip-path: polygon(0 100%, 0 60%, 50% 0, 100% 60%, 100% 100%);
  z-index: 1;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 60px;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

.section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d4af37;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, #000000, #4b0f23); /* All cards Black + Burgundy */
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 20px;
}

.card .btn-link {
  display: inline-block;
  padding: 12px 28px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.card .btn-link:hover {
  background: #b8860b;
  color: #fff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links a {
    font-size: 1.2rem;
    margin: 15px 0;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pricing .card.highlight {
  border: 2px solid #d4af37;
  transform: scale(1.05);
}


/* =========================================================
   SERVICES PAGE (Unique Design)
   Scoped classes to prevent clash with landing styles
========================================================= */

/* ---------- INTRO ---------- */
.services-intro {
  background: linear-gradient(135deg, #0b0b0b, #3a0f1f);
  padding: 120px 60px 100px;
  color: #fff;
  text-align: center;
}

.services-intro-inner {
  max-width: 900px;
  margin: auto;
}

.services-eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
}

.services-intro h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-intro p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ---------- SERVICE CATEGORIES ---------- */
.services-categories {
  background: #fff;
  padding: 100px 60px;
}

.services-categories-inner {
  max-width: 1200px;
  margin: auto;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse * {
  direction: ltr;
}

.service-text h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #111;
}

.service-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.service-points {
  list-style: none;
  padding: 0;
}

.service-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

.service-visual img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ---------- ENTERPRISE SERVICES ---------- */
.enterprise-services {
  background: #0c0c0c;
  color: #fff;
  padding: 100px 60px;
}

.enterprise-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.enterprise-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.enterprise-inner p {
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0.85;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.enterprise-item {
  background: linear-gradient(135deg, #000, #2a0c15);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(212,175,55,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enterprise-item h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.enterprise-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ---------- PROCESS ---------- */
.service-process {
  background: #fff;
  padding: 100px 60px;
}

.service-process-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-process-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 70px;
}

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

.process-step {
  background: #f9f9f9;
  padding: 45px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-step span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ---------- CTA ---------- */
.services-cta {
  background: linear-gradient(135deg, #000, #3b0f1f);
  color: #fff;
  padding: 100px 60px;
  text-align: center;
}

.services-cta-inner {
  max-width: 800px;
  margin: auto;
}

.services-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
  }

  .services-intro h1 {
    font-size: 2.3rem;
  }

  .services-intro,
  .services-categories,
  .enterprise-services,
  .service-process,
  .services-cta {
    padding: 80px 25px;
  }
}

/* =========================================================
   PRICING PAGE (Premium / Conversion Focused)
   Scoped classes – safe to merge into landing3.css
========================================================= */

/* ---------- HERO ---------- */
.pricing-hero {
  background: linear-gradient(135deg, #0b0b0b, #3b0f1f);
  padding: 120px 60px 100px;
  text-align: center;
  color: #fff;
}

.pricing-hero-inner {
  max-width: 900px;
  margin: auto;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 15px;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pricing-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ---------- PLANS ---------- */
.pricing-plans {
  background: #fff;
  padding: 100px 60px;
}

.pricing-plans-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.pricing-plan {
  background: #fafafa;
  border-radius: 22px;
  padding: 50px 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.pricing-plan:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.pricing-plan h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pricing-desc {
  font-size: 0.95rem;
  margin-bottom: 25px;
  color: #555;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}

.pricing-amount span {
  font-size: 1rem;
  color: #777;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.pricing-features li {
  margin-bottom: 12px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

/* ---------- BUTTONS ---------- */
.pricing-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: #d4af37;
  color: #000;
}

.pricing-btn.highlight {
  background: #d4af37;
  color: #000;
}

.pricing-btn.highlight:hover {
  background: #b8962e;
}

/* ---------- FEATURED PLAN ---------- */
.pricing-plan.featured {
  background: linear-gradient(135deg, #000, #3a0f1f);
  color: #fff;
  transform: scale(1.05);
  border: 1px solid rgba(212,175,55,0.4);
}

.pricing-plan.featured .pricing-desc,
.pricing-plan.featured .pricing-amount span {
  color: rgba(255,255,255,0.85);
}

.pricing-plan.featured .pricing-amount {
  color: #d4af37;
}

.pricing-plan.featured:hover {
  transform: scale(1.07) translateY(-10px);
}

/* Badge */
.pricing-badge {
  position: absolute;
  top: 25px;
  right: -40px;
  background: #d4af37;
  color: #000;
  padding: 8px 45px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
}

/* ---------- VALUE SECTION ---------- */
.pricing-value {
  background: #f6f6f6;
  padding: 100px 60px;
}

.pricing-value-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.pricing-value-inner h2 {
  font-size: 2.4rem;
  margin-bottom: 60px;
}

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

.pricing-value-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.pricing-value-item h4 {
  margin-bottom: 10px;
  color: #111;
}

/* ---------- FAQ PREVIEW ---------- */
.pricing-faq-preview {
  background: #fff;
  padding: 100px 60px;
}

.pricing-faq-inner {
  max-width: 900px;
  margin: auto;
}

.pricing-faq-inner h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.3rem;
}

.pricing-faq-item {
  margin-bottom: 35px;
}

.pricing-faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pricing-link {
  display: inline-block;
  margin-top: 20px;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
}

/* ---------- CTA ---------- */
.pricing-cta {
  background: linear-gradient(135deg, #000, #3b0f1f);
  color: #fff;
  padding: 110px 60px;
  text-align: center;
}

.pricing-cta-inner {
  max-width: 800px;
  margin: auto;
}

.pricing-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.pricing-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .pricing-hero h1 {
    font-size: 2.3rem;
  }

  .pricing-plans,
  .pricing-value,
  .pricing-faq-preview,
  .pricing-cta {
    padding: 80px 25px;
  }

  .pricing-plan.featured {
    transform: none;
  }

  .pricing-badge {
    display: none;
  }
}

/* =========================
   PORTFOLIO PAGE STYLES
   (Unique design, non-clashing)
========================= */

.port-header {
  background: #070707;
  position: sticky;
  top: 0;
  z-index: 999;
}

.port-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.port-header .port-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.port-logo {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}

.port-nav {
  display: flex;
  gap: 25px;
}

.port-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.port-nav a:hover,
.port-nav a.port-active {
  opacity: 1;
  color: #d4af37;
}

.port-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.port-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  transition: all 0.3s ease;
}

.port-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.port-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.port-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */
.port-hero {
  background: linear-gradient(135deg, #0b0b0b, #3b0f1f);
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}

.port-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.port-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* FILTERS */
.port-filters {
  background: #fff;
  padding: 40px 0;
}

.port-filter-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.port-filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.port-filter:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.port-filter.active {
  background: #d4af37;
  color: #000;
  border-color: #d4af37;
}

/* GALLERY */
.port-gallery {
  padding: 70px 0;
  background: #f6f6f6;
}

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

.port-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.port-card img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.port-card:hover .port-overlay {
  transform: translateY(0);
}

.port-overlay h3 {
  margin: 0 0 8px;
  color: #fff;
}

.port-overlay p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.85);
}

.port-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  background: #d4af37;
  color: #000;
  font-weight: 700;
}

/* CASE STUDY */
.port-case {
  padding: 90px 0;
  background: #fff;
}

.port-case-head {
  text-align: center;
  margin-bottom: 50px;
}

.port-case-head h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.port-case-head p {
  opacity: 0.8;
}

.port-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.port-case-card {
  background: #f7f7f7;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.port-case-card h3 {
  margin-top: 0;
}

.port-case-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.port-case-card li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.port-case-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.port-case-link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

/* CTA */
.port-cta {
  background: linear-gradient(135deg, #0b0b0b, #3b0f1f);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.port-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-case-grid {
    grid-template-columns: 1fr;
  }

  .port-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: #070707;
    flex-direction: column;
    padding: 100px 20px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .port-nav.open {
    transform: translateX(0);
  }

  .port-hamburger {
    display: block;
  }
}

/* ================= MOBILE NAV ================= */
@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }
}


/* ================= TESTIMONIAL PAGE ================= */
.testi-hero {
  background: linear-gradient(135deg, #0b0b0b, #2f0f1f);
  color: #fff;
  padding: 120px 60px;
  text-align: center;
}

.testi-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.testi-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.testi-section {
  background: #fff;
  padding: 100px 60px;
}

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

.testi-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.testi-avatar {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

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

.testi-card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.testi-role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.testi-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.testi-cta {
  background: #000;
  color: #fff;
  padding: 100px 60px;
  text-align: center;
}

.testi-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.testi-cta p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.testi-cta-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  background: #d4af37;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .testi-hero, .testi-section, .testi-cta {
    padding: 80px 25px;
  }

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

/* ================= BLOG PAGE ================= */
.blog-hero {
  background: linear-gradient(135deg, #111, #4b0f23);
  color: #fff;
  padding: 120px 60px;
  text-align: center;
}

.blog-hero-inner h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.blog-hero-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.blog-layout {
  background: #fff;
  padding: 80px 60px;
}

.blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  background: #f8f8f8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

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

.post-content {
  padding: 35px;
}

.post-content h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.post-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.post-read {
  display: inline-block;
  padding: 12px 26px;
  background: #d4af37;
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

.post-read:hover {
  background: #b8860b;
  color: #fff;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
  margin-bottom: 15px;
}

.sidebar-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.sidebar-card ul li {
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.sidebar-input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: none;
  margin-top: 10px;
  margin-bottom: 12px;
}

.sidebar-btn {
  padding: 12px 18px;
  border-radius: 50px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-btn:hover {
  background: #b8860b;
}

@media (max-width: 900px) {
  .blog-hero, .blog-layout {
    padding: 70px 25px;
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-post {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ================= */
.contact-hero {
  background: linear-gradient(135deg, #0b0b0b, #4b0f23);
  color: #fff;
  padding: 120px 60px;
  text-align: center;
}

.contact-hero-inner h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.contact-hero-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-section {
  background: #fff;
  padding: 80px 60px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.info-card h3 {
  margin-bottom: 10px;
}

.contact-form .form-card {
  background: #111;
  color: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
}

.contact-form input {
  background: #fff;
  color: #000;
}

.contact-form textarea {
  background: #fff;
  color: #000;
}

.contact-btn {
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  background: #d4af37;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.contact-btn:hover {
  background: #b8860b;
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-hero, .contact-section {
    padding: 70px 25px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}


/* ================= FAQ PAGE ================= */
.faq-hero {
  background: linear-gradient(135deg, #000, #4b0f23);
  color: #fff;
  padding: 120px 60px;
  text-align: center;
}

.faq-hero-inner h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.faq-hero-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.faq-section {
  background: #fff;
  padding: 80px 60px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 20px;
}

.faq-card {
  background: #f7f7f7;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-icon {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.faq-answer {
  padding: 0 30px 25px;
  display: none;
  color: #333;
}

.faq-answer.active {
  display: block;
}


.faq-answer p {
  margin: 0;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .faq-hero, .faq-section {
    padding: 70px 25px;
  }
}

