/* ==========================================================================
   GCORP Demo & Construction - Premium Black, White & Orange Theme
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;900&display=swap');

:root {
  /* Theme Colors */
  --color-black: #0c0c0e;
  --color-dark-grey: #17171a;
  --color-metal: #232329;
  
  --color-white: #ffffff;
  --color-grey-light: #f2f3f6;
  --color-grey-border: #e2e4e8;
  
  --text-dark: #121214;
  --text-charcoal: #2c2c30;
  --text-muted: #62626a;
  
  --color-orange: #ff5500;
  --color-orange-hover: #d94800;
  --color-orange-glow: rgba(255, 85, 0, 0.15);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Geometry & Borders */
  --radius-xl: 20px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-neon: 0 8px 24px rgba(255, 85, 0, 0.15);
}

/* Reset & Core Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-grey-light);
  color: var(--text-charcoal);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-grey-light);
  color: var(--text-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background-color: var(--color-orange);
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.section-dark {
  background-color: var(--color-black);
  color: #c0c0c4;
}

.section-dark h2, .section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: #909095;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-orange); }

/* Proper Standard Button Formatting */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

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

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* High-Density Congested Header Styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-grey-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: var(--shadow-premium);
}

/* Top Mini Metadata Bar */
.header-top-bar {
  background-color: var(--color-black);
  color: #a0a0a5;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-left, .top-info-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-info-left a {
  color: #d0d0d5;
  font-weight: 600;
}

.top-info-left a:hover {
  color: var(--color-orange);
}

/* Navigation Line */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

/* Logo Placeholder Graphic */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-placeholder {
  width: 38px;
  height: 38px;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.25);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--color-black);
  line-height: 1;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav-link {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  padding: 0.35rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition-smooth);
}

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

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

.btn-nav {
  height: 38px;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

/* Mobile Toggle hamburger */
.mobile-toggle {
  display: none;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-grey-border);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--color-black);
  transition: var(--transition-smooth);
}

/* Hero Section with Video playing */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  background-color: var(--color-black);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.35) 0%, rgba(12, 12, 14, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  color: var(--color-white);
  line-height: 1.1;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #e2e2e8;
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-ctas .btn {
  height: 48px;
}

/* Animated Trust Badges (SamsSolar style) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badges {
  display: flex;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
  flex-wrap: wrap;
  justify-content: center; /* Center-align the card set horizontally */
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center values and text inside card */
  text-align: center;  /* Center-align multiline text */
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  min-width: 190px;
  max-width: 260px; /* Secure consistent card widths */
  flex: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.badge-item:nth-child(1) { animation-delay: 0.2s; }
.badge-item:nth-child(2) { animation-delay: 0.3s; }
.badge-item:nth-child(3) { animation-delay: 0.4s; }
.badge-item:nth-child(4) { animation-delay: 0.5s; }

.badge-item:hover {
  background: rgba(255, 85, 0, 0.08);
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.15);
}

.badge-value-wrapper {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  font-family: var(--font-heading);
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c0c0c5;
}

/* Structured Clean Information Grid & Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.card-dark {
  background-color: var(--color-dark-grey);
  border-color: rgba(255, 255, 255, 0.05);
}

.card-dark h3, .card-dark h4 {
  color: var(--color-white);
}

.card-dark p {
  color: #a0a0a5;
}

.card h3 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.card-footer {
  margin-top: 1.5rem;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link:hover {
  gap: 0.6rem;
}

/* Project Cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: var(--color-orange);
}

.project-media {
  position: relative;
  height: 220px;
  background-color: var(--color-grey-light);
  border-bottom: 1px solid var(--color-grey-border);
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card:hover .project-media img {
  transform: scale(1.05);
}

.project-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.5rem;
}

.project-content {
  padding: 2rem;
}

.project-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* Accordion FAQs */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-border);
  background-color: var(--color-white);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-black);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.35rem 1.75rem;
}

.faq-item.active {
  background-color: var(--color-grey-light);
  border-color: var(--color-orange);
}

.faq-icon {
  color: var(--color-orange);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Quote/Enquiry Form */
.quote-form-container {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-premium);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-full {
  grid-column: span 2;
}

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

.form-group label {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-black);
}

.form-control {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-grey-border);
  background-color: var(--color-grey-light);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.05);
}

textarea.form-control {
  min-height: 110px;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quote-form-container {
    padding: 1.5rem !important;
    margin: 0 !important;
  }

  .form-group select.form-control {
    font-size: 16px;
  }
}

/* Corporate Footer */
footer {
  background-color: var(--color-black);
  color: #a0a0a5;
  padding: 6rem 0 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h4 {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #a0a0a5;
  font-size: 0.92rem;
}

.footer-link:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #77777c;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Suburb Links */
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.suburb-link-card {
  padding: 0.85rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-grey-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-premium);
}

.suburb-link-card:hover {
  background-color: var(--color-grey-light);
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* ==========================================================================
   Mobile Responsive Formatting & Menu Overlays
   ========================================================================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.mobile-nav-actions {
  display: none;
}

@media (max-width: 768px) {
  .logo img {
    max-width: 170px !important;
    height: 48px !important;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.50rem;
    margin-left: auto;
    margin-right: 0.65rem;
    z-index: 10;
  }
  
  .mobile-nav-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    transition: transform 0.2s ease;
  }
  
  .mobile-nav-call:active {
    transform: scale(0.9);
  }

  .section {
    padding: 3.5rem 0;
  }
  
  /* Disable top metadata bar on mobile to keep header clean and non-overlapping */
  .header-top-bar {
    display: none;
  }

  .header-container {
    height: 70px;
  }

  /* Frosted white dropdown menu on mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-grey-border);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.05rem;
    display: block;
    border-bottom: 1px solid var(--color-grey-border);
    padding-bottom: 0.75rem;
    color: var(--color-black);
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 7rem 0 5rem 0;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust-badges {
    gap: 1rem 1.25rem;
    padding-top: 1.5rem;
  }

  .card-grid, .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .quote-form-container {
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  
  .form-full {
    grid-column: span 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* ==========================================================================
   Slider Components (Recent Projects & Verified Google Reviews)
   ========================================================================== */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-grey-border);
  background-color: var(--color-white);
  box-shadow: var(--shadow-premium);
}

.project-slider-track, .review-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.project-slide, .review-slide-card {
  min-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .project-slide, .review-slide-card {
    min-width: 33.333% !important;
  }
}

.project-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  color: var(--color-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.25);
}

.slider-arrow:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

/* Premium Google Review Cards */
.review-slide-card {
  padding: 3rem 2.5rem;
  text-align: center;
  background-color: var(--color-white);
}

.review-stars {
  color: var(--color-orange);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-comment {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-author {
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34a853; /* Google Green */
  background-color: rgba(52, 168, 83, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
}

/* Service Card Premium with Image Background and Icon Overlay */
.service-card-premium {
  position: relative;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  color: var(--color-white);
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.1) 0%, rgba(12, 12, 14, 0.9) 100%);
  z-index: 1;
}

.service-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(255, 85, 0, 0.35);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card-premium h3 {
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.service-card-premium p {
  color: #d0d0d5;
  margin: 0;
  font-size: 0.88rem;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 85, 0, 0.15);
  border-color: var(--color-orange);
}

.service-card-premium:hover .service-card-icon {
  background-color: var(--color-white);
  color: var(--color-orange);
}

@media (max-width: 768px) {
  .project-slide img {
    height: 300px;
  }
  .review-slide-card {
    padding: 2rem 1.25rem;
  }
  .review-comment {
    font-size: 1rem;
  }
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

@media (max-width: 768px) {
  .grid-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.service-card:hover .service-card-cta {
  transform: translateX(6px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(255, 85, 0, 0.12) !important;
  border-color: rgba(255, 85, 0, 0.25) !important;
}

.service-card:hover .service-card-image-box img {
  transform: scale(1.08);
}

/* Multi-step Popup Modal */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-modal.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 14, 0.7);
  backdrop-filter: blur(8px);
}

.popup-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 95%;
  max-width: 500px;
  position: relative;
  z-index: 10001;
  padding: 2.5rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-grey-border);
}

.popup-modal.active .popup-card {
  transform: translateY(0);
}

.popup-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.popup-close-btn:hover {
  color: var(--color-orange);
}

.popup-header {
  margin-bottom: 2rem;
}

.popup-progress-bar {
  background-color: var(--color-grey-light);
  height: 6px;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.popup-progress-fill {
  background-color: var(--color-orange);
  height: 100%;
  transition: width 0.3s ease;
}

.popup-step-indicator {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popup-slide-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .popup-card {
    padding: 2rem 1.5rem;
    width: 95%;
  }
}

/* Blog article body styling */
.blog-body-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.blog-body-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #3f3f46;
}

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

.blog-body-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-inline-image {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-grey-border);
  box-shadow: var(--shadow-premium);
  height: clamp(200px, 30vw, 320px);
}

.blog-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
