/* ============================================
   RISE ARC - Premium Agency Styles
   Ultra-Luxury Black & Gold Theme
   ============================================ */

/* === CSS Custom Properties === */
:root {
  /* Primary Colors */
  --black: #0a0a0a;
  --black-deep: #050505;
  --charcoal: #121212;
  --charcoal-light: #1a1a1a;
  --grey-dark: #2a2a2a;
  --grey: #3a3a3a;
  --grey-light: #4a4a4a;
  
  /* Gold Palette */
  --gold: #c9a962;
  --gold-light: #d4bc7a;
  --gold-dark: #a68b4b;
  --gold-glow: rgba(201, 169, 98, 0.3);
  --gold-subtle: rgba(201, 169, 98, 0.1);
  
  /* Text Colors */
  --white: #ffffff;
  --white-muted: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-tertiary: #707070;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  --gradient-dark: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  --gradient-radial: radial-gradient(ellipse at center, var(--charcoal-light) 0%, var(--black) 70%);
  
  /* Shadows */
  --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.2);
  --shadow-gold-hover: 0 0 50px rgba(201, 169, 98, 0.4);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.7);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* === Reset & Base Styles === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white-muted);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  color: var(--text-secondary);
}

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

/* === Container === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Section Base === */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 8px 20px;
  border: 1px solid var(--gold-subtle);
  border-radius: 30px;
  background: var(--gold-subtle);
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* === Gold Text === */
.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  padding: 16px 0;
}

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

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}

.navbar-logo span {
  color: var(--gold);
}

.navbar-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-smooth);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--gold);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-radial);
  overflow: hidden;
}

/* Animated Background Elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, var(--gold-subtle) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, var(--gold-subtle) 0%, transparent 30%);
  animation: float 20s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: var(--gold-subtle);
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-hover);
}

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

.btn-outline:hover {
  background: var(--gold-subtle);
  transform: translateY(-3px);
}

/* === About Section === */
.about {
  background: var(--charcoal);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-subtle),
    transparent
  );
}

/* Grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Content */
.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--grey-dark);
  border-radius: 8px;
  border: 1px solid var(--grey);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Right visual (Spline container) */
.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
  padding: 20px;
}

/* Gold outline frame */
.about-image-container::before {
  content: '';
  position: absolute;
  inset: 20px;              /* SAME as container padding */
  border: 1px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}


/* Spline holder */
.about-image {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey);
  background: transparent;
}


/* Make spline fit perfectly */
.about-image spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}


/* === Founder Section === */
.founder {
  background: var(--black);
}

.founder-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: var(--charcoal);
  border-radius: 16px;
  border: 1px solid var(--grey-dark);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.founder-header {
  text-align: center;
  margin-bottom: 40px;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
}

.founder-header h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.founder-header p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.founder-credentials {
  list-style: none;
}

.founder-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-dark);
  font-size: 1rem;
  color: var(--text-secondary);
}

.founder-credentials li:last-child {
  border-bottom: none;
}

.founder-credentials li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* === Services Section === */
.services {
  background: var(--charcoal);
}

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

.service-card {
  padding: 40px;
  background: var(--charcoal-light);
  border-radius: 12px;
  border: 1px solid var(--grey-dark);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

.service-card h4 {
  margin-bottom: 16px;
  color: var(--white);
  transition: var(--transition-fast);
}

.service-card:hover h4 {
  color: var(--gold);
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* === Clients Section === */
.clients {
  background: var(--black);
}

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

.client-card {
  padding: 48px 32px;
  background: var(--charcoal);
  border-radius: 12px;
  border: 1px solid var(--grey-dark);
  text-align: center;
  transition: var(--transition-smooth);
}

.client-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.client-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--grey);
  transition: var(--transition-smooth);
}

.client-card:hover .client-logo {
  border-color: var(--gold);
  background: var(--gold-subtle);
}

.client-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.client-card p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* === Contact Section === */
.contact {
  background: var(--charcoal);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info > p {
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--gold);
}

.contact-item-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 1rem;
  color: var(--white-muted);
}

.contact-form {
  background: var(--charcoal-light);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--grey-dark);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--grey-dark);
  border: 1px solid var(--grey);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form .btn {
  width: 100%;
}

/* === Footer === */
.footer {
  background: var(--black-deep);
  padding: 60px 0 30px;
  border-top: 1px solid var(--grey-dark);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-dark);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* === Scroll To Top === */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  border: none;
  color: var(--black);
  font-size: 1.25rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-hover);
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive Design === */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-visual {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }
  
  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-menu a {
    font-size: 1.25rem;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .services-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .founder-card {
    padding: 40px 24px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 48px;
  }
  
  .hero-badge {
    font-size: 0.625rem;
    padding: 10px 16px;
  }
  
  .service-card,
  .client-card {
    padding: 32px 24px;
  }
}


/* HOME SPLINE FULLSCREEN */
.home-spline {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* SPLINE VIEWER FULLSCREEN */
.spline-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Remove spline default outline */
spline-viewer {
  display: block;
}



/* FRAMER HOME BACKGROUND */
.home-framer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.framer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* Content above animation */
.home-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}



.home-framen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Framer background */
.framer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* Hero text */
.hero-content {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */

  text-align: center;
  padding: 0 20px;
  color: #ffffff;
}


.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: 8vw;     /* pushes text nicely from left */
  margin-top: 15vh;    /* vertical balance */
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}
.home-framen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: radial-gradient(
      circle at 50% 40%,
      rgba(70, 90, 160, 0.35),
      #000 70%
    ),
    linear-gradient(120deg, #050505, #0b0b0b);
  overflow: hidden;
}

/* Subtle stars */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 720px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

/* CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 34px;
  background: linear-gradient(135deg, #caa14a, #f5d27a);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 210, 122, 0.35);
}

.btn-secondary {
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 1.6s infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}







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

:root {
    --color-bg-dark: #0d0d0d;
    --color-bg-light: #f5f5f5;
    --color-gold: #c9a227;
    --color-gold-light: #d4b44a;
    --color-white: #ffffff;
    --color-text-light: #e5e5e5;
    --color-text-muted: #888888;
    --color-text-dark: #1a1a1a;
    --color-blue: #3b82f6;
    --color-card-bg: #1a1a1a;
    --color-border: #2a2a2a;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
}

.text-gold {
    color: var(--color-gold);
}

.text-blue {
    color: var(--color-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--color-gold);
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    text-align: center;
    background-color: var(--color-bg-dark);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.section-label-dark {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title-dark {
    font-size: 40px;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.philosophy-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Core Values Section */
.core-values {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    text-align: center;
}

.section-title {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.value-card {
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
}

.value-icon {
    font-size: 24px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px;
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: 8px;
}

.value-title {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.value-description {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

.process-card {
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    position: relative;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-title {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 12px;
    font-family: var(--font-display);
}

.process-description {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #666, #333);
}

.testimonial-name {
    font-size: 16px;
    color: var(--color-white);
    font-family: var(--font-display);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-text-muted);
}

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

.testimonial-text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    text-align: center;
}

.cta-title {
    font-size: 42px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-style: italic;
}

.cta-description {
    font-size: 15px;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

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

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 20px 0;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-heading {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.footer-link {
    display: block;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-gold);
}

.contact-item {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-muted);
}

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

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title,
    .section-title-dark,
    .cta-title {
        font-size: 32px;
    }
    
    .values-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title,
    .section-title-dark,
    .cta-title {
        font-size: 26px;
    }
    
    .value-card,
    .process-card,
    .testimonial-card {
        padding: 24px;
    }
}




/* VARIABLES */
:root {
    --gold-400: #D4AF37;
    --gold-500: #C5A059;
    --gold-600: #B08D55;
    
    --dark-900: #050505;
    --dark-800: #0A0A0A;
    --dark-700: #151515;
    
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray: #6b7280;
    --gray-dark: #4b5563;
    
    --font-serif: "Playfair Display", serif;
    --font-sans: "Manrope", sans-serif;
    
    --container-width: 1280px;
    --section-padding: 6rem 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--dark-900);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--gold-500);
    color: var(--white);
}

/* UTILITIES */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-dark { color: var(--dark-900); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-gray-light { color: #9ca3af; } /* Custom gray for dark mode text */

.italic { font-style: italic; }

/* TYPOGRAPHY */
.subheading {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.heading-primary {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.heading-secondary {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-text {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--gray-dark);
}

@media (min-width: 768px) {
    .heading-primary, .heading-secondary {
        font-size: 3.5rem;
    }
}

/* SECTION 1: OVERVIEW */
.overview-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-header {
    margin-bottom: 5rem;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    border: 1px solid var(--gray-light);
    padding: 2rem;
    border-radius: 2px;
    background: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    margin-bottom: 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .icon-box {
    background-color: var(--gold-500);
    color: var(--white);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-900);
}

.card-desc {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-600);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.025em;
    transition: gap 0.3s ease;
}

.service-card:hover .read-more {
    gap: 0.75rem;
}

/* SECTION 2: DETAILS */
.details-container {
    background-color: var(--dark-900);
}

.detail-section {
    padding: var(--section-padding);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-section:last-child {
    border-bottom: none;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .detail-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Alternating layout logic */
    .detail-wrapper.reverse .detail-content {
        order: 2;
    }
    .detail-wrapper.reverse .detail-image {
        order: 1;
    }
}

.detail-desc {
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.875rem;
}

.step-title {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--gray);
    font-size: 0.875rem;
}

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

.stat-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.25rem;
}

.stat-value {
    color: var(--gold-500);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Detail Image Placeholder */
.detail-image {
    width: 100%;
}

.image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 100%);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease;
}

@media (min-width: 768px) {
    .image-placeholder {
        aspect-ratio: 4 / 3;
    }
}

.detail-wrapper:hover .image-placeholder {
    background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
}

.overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 20px 20px;
}

.placeholder-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    color: rgba(197, 160, 89, 0.5);
    margin-bottom: 1rem;
    display: inline-block;
}

.placeholder-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.gold-line {
    width: 4rem;
    height: 2px;
    background-color: var(--gold-500);
    margin: 0 auto;
}

/* SECTION 3: CTA */
.cta-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.cta-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-desc {
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--gold-600);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--dark-900);
    color: var(--dark-900);
}

.btn-outline:hover {
    background-color: var(--dark-900);
    color: var(--white);
}

.cta-stats {
    border-top: 1px solid var(--gray-light);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 42rem;
    margin: 0 auto;
}

.cta-stat-item .value {
    color: var(--gold-600);
    font-weight: 700;
    font-size: 1.5rem;
}

.cta-stat-item .label {
    color: var(--gray-400);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* FOOTER */
.footer {
    background-color: var(--dark-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--gold-500);
    transform: rotate(45deg);
}

.logo-text {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.875rem;
    max-width: 20rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--gold-500);
}

.footer-heading {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-links a.active {
    color: var(--gold-500);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.875rem;
    align-items: flex-start;
}

.footer-contact svg {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gray-dark);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.legal-links a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--white);
}



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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

.section {
  padding: 90px 20px;
}

.dark {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
}

.light {
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.center { text-align: center; }

h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

h1 span, .eyebrow {
  color: #d4af37;
}

.subtitle {
  max-width: 600px;
  margin: auto;
  opacity: .85;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.dark .card {
  background: #141414;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin-top: 40px;
}

.stats strong {
  font-size: 32px;
  color: #d4af37;
}

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

.steps li {
  margin: 12px 0;
}

.comparison {
  width: 100%;
  margin-top: 40px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 14px;
  border-bottom: 1px solid #333;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}






.nav-offset {
  height: 90px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.navbar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
}

.navbar-logo span {
  color: #c9a24d;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar-menu a {
  color: #bbb;
}

.navbar-menu a.active,
.navbar-menu a:hover {
  color: #c9a24d;
}

.nav-offset {
  height: 80px;
}

/* ---------- HERO ---------- */
.contact-hero {
  background: radial-gradient(circle at top, #1a1f2e, #000);
  padding: 120px 20px 100px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-hero h1 span {
  color: #c9a24d;
}

.contact-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #ccc;
}

.section-label {
  color: #c9a24d;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

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

/* ---------- CARDS ---------- */
.contact-card {
  background: #f8f8f8;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

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

/* ---------- FORM ---------- */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  width: 100%;
}

.btn-primary {
  background: #c9a24d;
  color: #000;
  padding: 14px;
  border: none;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 20px;
}

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

.footer a {
  display: block;
  margin-top: 8px;
  color: #bbb;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}





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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Styles */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-gold { color: #D4AF37; }
.label-gold {
    display: block;
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.centered { text-align: center; }

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 16px;
}
.section-subtitle.light { color: #ccc; }
.section-subtitle.left { text-align: left; margin-left: 0; }

/* Sections Styling */
section { padding: 80px 0; }

/* 1. Hero Section */
.hero-section {
    background: linear-gradient(180deg, #000 0%, #111 100%);
    color: #fff;
    text-align: center;
    padding: 120px 0;
}

.hero-section h1 {
    font-size: 52px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #bbb;
    font-size: 18px;
}

/* 2. Values Section */
/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.value-card {
  padding: 32px;
  background: #1c1c1c;                 /* dark solid card */
  border-radius: 14px;                 /* smooth rounded corners */
  border: 1px solid #2a2a2a;            /* subtle border */
  transition: all 0.35s ease;
}

/* Hover Effect */
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: #d4af37;                /* gold highlight */
}

/* Icon */
.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);   /* soft gold bg */
  border-radius: 10px;
  font-size: 22px;
  color: #d4af37;                      /* gold icon */
  margin-bottom: 20px;
}

/* Title */
.value-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #ffffff;                      /* strong white heading */
  font-weight: 600;
}

/* Description */
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #b5b5b5;                      /* soft gray text */
}


/* 3. Comparison Section */
.comparison-section {
    background-color: #050505;
    color: #fff;
}

.table-container {
    overflow-x: auto;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #222;
}

.comparison-table th {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #888;
}

.highlight-col {
    background: rgba(212, 175, 55, 0.05);
    color: #D4AF37;
    font-weight: 600;
}

.check { color: #D4AF37; }
.cross { color: #555; }

/* 4. Methodology Section */
.methodology-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.methodology-content { flex: 1; }
.methodology-image { flex: 1; }
.methodology-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.methodology-list { margin-top: 40px; }

.method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.method-num {
    background: #D4AF37;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.method-text h4 { font-size: 18px; margin-bottom: 5px; }
.method-text p { font-size: 14px; color: #666; }

/* 5. Stats Section */
.stats-section {
    background-color: #000;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 50px;
}

.stat-icon { font-size: 30px; margin-bottom: 15px; color: #D4AF37; }
.stat-num { font-size: 40px; font-weight: 700; color: #D4AF37; }
.stat-item p { font-size: 16px; margin-top: 5px; }
.stat-item small { color: #777; font-size: 12px; display: block; margin-top: 10px; line-height: 1.4; }

/* 6. Guarantees Section */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guarantee-card {
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.g-icon { color: #D4AF37; font-size: 24px; margin-bottom: 20px; }
.guarantee-card h3 { font-size: 22px; margin-bottom: 15px; }
.guarantee-card p { font-size: 14px; color: #666; margin-bottom: 20px; }

.guarantee-card ul {
    list-style: none;
    padding: 0;
}

.guarantee-card ul li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.guarantee-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
}

/* 7. Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.t-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.t-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.t-header h4 { font-size: 18px; }
.t-header p { font-size: 13px; color: #888; }
.stars { color: #D4AF37; font-size: 12px; margin-top: 5px; }

.quote { font-style: italic; color: #444; margin-bottom: 20px; }
.location { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

/* 8. CTA Section */
.cta-section {
    background: #000;
    text-align: center;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-gold {
    background: #D4AF37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: 15px;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: 15px;
}

/* 9. Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

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

.logo-gold {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-brand p { color: #777; max-width: 300px; font-size: 14px; }
.social-icons { margin-top: 20px; display: flex; gap: 15px; color: #888; }

.footer h4 { margin-bottom: 20px; font-family: 'Inter', sans-serif; font-size: 16px; color: #D4AF37; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #777; text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: #D4AF37; }

.footer-contact p { color: #777; font-size: 14px; margin-bottom: 10px; }

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .values-grid, .stats-grid, .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .methodology-flex { flex-direction: column; }
    .hero-section h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    .values-grid, .stats-grid, .guarantees-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; padding: 0 40px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .legal-links a { margin: 0 10px; }
}
.value-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border-radius: 10px;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  color: #d4af37;
}


.cta {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(circle at top, #121212, #000);
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 16px;
  display: inline-block;
}

.cta-title {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  max-width: 900px;
  margin: 0 auto 20px;
}

.cta-description {
  color: #b5b5b5;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #d4af37;
  color: #000;
  font-weight: 500;
}

.btn-primary:hover {
  background: #e6c45a;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}




/* === CTA SECTION (LIGHT VERSION) === */
.cta-section {
  background: #ffffff;
  padding: 120px 0;
}

.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Subheading */
.subheading {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
  display: inline-block;
}

/* Main Heading */
.heading-secondary {
  font-size: 48px;
  font-weight: 600;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.heading-secondary .italic {
  font-style: italic;
}

/* Description */
.cta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
}

.btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background: #d4af37;
  color: #000;
  border: none;
}

.btn-primary:hover {
  background: #e6c45a;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Stats */
.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.cta-stat-item .value {
  font-size: 28px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 6px;
}

.cta-stat-item .label {
  font-size: 13px;
  color: #666666;
}




/* ========================================================= */
/* 🟢 GREEN: LIGHT VERSION OVERRIDE — WEBSITE DEVELOPMENT */
/* ========================================================= */

/* Section background */
#web-dev.detail-section {
  background: #ffffff; /* 🟢 GREEN */
  padding: 120px 0; /* 🟢 GREEN */
}

/* Left content */
#web-dev .detail-content {
  color: #111111; /* 🟢 GREEN */
}

/* Subheading */
#web-dev .subheading,
#web-dev .text-gold {
  color: #d4af37; /* 🟢 GREEN */
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Main heading */
#web-dev .heading-secondary {
  color: #111111; /* 🟢 GREEN */
  font-size: 48px; /* 🟢 GREEN */
  font-weight: 600;
  line-height: 1.2;
}

/* Description text */
#web-dev .detail-desc {
  color: #555555; /* 🟢 GREEN */
  max-width: 640px;
  line-height: 1.7;
}

/* ===================== */
/* 🟢 STEPS (1–4 LIST) */
/* ===================== */

#web-dev .steps-list {
  margin-top: 40px;
}

#web-dev .step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

/* Step number */
#web-dev .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d4af37; /* 🟢 GREEN */
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Step title */
#web-dev .step-title {
  color: #111111; /* 🟢 GREEN */
  font-size: 16px;
  margin-bottom: 6px;
}

/* Step description */
#web-dev .step-desc {
  color: #666666; /* 🟢 GREEN */
  font-size: 14px;
  line-height: 1.6;
}

/* ===================== */
/* 🟢 RIGHT IMAGE CARD */
/* ===================== */

#web-dev .detail-media {
  background: #f3f3f3; /* 🟢 GREEN */
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08); /* 🟢 GREEN */
}

/* Remove dark grid / pattern */
#web-dev .detail-media::before,
#web-dev .detail-media::after {
  display: none !important; /* 🟢 GREEN */
}

/* ===================== */
/* 🟢 STATS */
/* ===================== */

#web-dev .stats-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

#web-dev .stat-box {
  background: #fafafa; /* 🟢 GREEN */
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

#web-dev .stat-value {
  color: #d4af37; /* 🟢 GREEN */
  font-size: 28px;
  font-weight: 600;
}

#web-dev .stat-label {
  color: #666666; /* 🟢 GREEN */
  font-size: 13px;
  margin-top: 6px;
}
/* 🟢 GREEN: GOLD STEP NUMBER ONLY */
.step-number {
  background: #d4af37;   /* gold background */
  color: #000000;        /* dark number for contrast */
  border-radius: 50%;
}

/* ============================= */
/* LIGHT THEME – GBP HANDLING */
/* ============================= */

#gbp-handling {
  background: #ffffff;
  color: #111111;
}

/* Subheading */
#gbp-handling .subheading {
  color: #d4af37; /* gold */
  letter-spacing: 2px;
}

/* Main heading */
#gbp-handling .heading-secondary {
  color: #111111;
}

/* Description text */
#gbp-handling .detail-desc {
  color: #555555;
}

/* Step titles */
#gbp-handling .step-title {
  color: #111111;
}

/* Step descriptions */
#gbp-handling .step-desc {
  color: #666666;
}

/* Step numbers (gold circle) */
#gbp-handling .step-number {
  background: #d4af37;
  color: #111111;
  font-weight: 600;
}

/* Image / card box */
#gbp-handling .detail-image {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

/* Remove dark grid / dots */
#gbp-handling .detail-image::before,
#gbp-handling .detail-image::after {
  display: none;
}

/* Placeholder text */
#gbp-handling .placeholder-text {
  color: #111111;
}

/* ============================= */
/* STATS */
/* ============================= */

#gbp-handling .stats-grid {
  margin-top: 60px;
}

#gbp-handling .stat-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: none;
}

#gbp-handling .stat-value {
  color: #d4af37;
  font-size: 28px;
  font-weight: 600;
}

#gbp-handling .stat-label {
  color: #666666;
  font-size: 13px;
}












/* ============================= */
/* LIGHT SERVICE – INSTAGRAM */
/* ============================= */

#instagram-handling {
  background: #ffffff;
  color: #111111;
}

/* Subheading */
#instagram-handling .subheading {
  color: #d4af37;
  letter-spacing: 2px;
}

/* Heading */
#instagram-handling .heading-secondary {
  color: #111111;
}

/* Paragraph text */
#instagram-handling .detail-desc {
  color: #555555;
}

/* Steps */
#instagram-handling .step-title {
  color: #111111;
}

#instagram-handling .step-desc {
  color: #666666;
}

/* Step number (gold circle) */
#instagram-handling .step-number {
  background: #d4af37;
  color: #111111;
  font-weight: 600;
}

/* Stats */
#instagram-handling .stat-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

#instagram-handling .stat-value {
  color: #d4af37;
  font-size: 28px;
  font-weight: 600;
}

#instagram-handling .stat-label {
  color: #666666;
}

/* Image / card */
#instagram-handling .detail-image {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

/* Remove dark grid */
#instagram-handling .detail-image::before,
#instagram-handling .detail-image::after {
  display: none;
}

/* Placeholder text */
#instagram-handling .placeholder-text {
  color: #111111;
}



/* ========================================= */
/* SERVICES OVERVIEW – DARKER SECTION BG */
/* ========================================= */

.overview-section {
  background: #f1f1f1; /* slightly darker than white */
  padding: 100px 0;
}

/* Section heading */
.overview-section .heading-primary {
  color: #111111;
}

.overview-section .intro-text {
  color: #555555;
}

/* ========================================= */
/* SERVICES GRID */
/* ========================================= */

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

/* Service Card */
.service-card {
  background: #ffffff; /* keep cards light */
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

/* Hover effect */
.service-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
}

/* Icon box */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f3efe6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box svg {
  color: #b89b5e;
}

/* Card title */
.card-title {
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Card description */
.card-desc {
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* Read more */
.read-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b89b5e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.read-more svg {
  transition: transform 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* ========================================= */
/* NAVBAR HEIGHT REDUCTION */
/* ========================================= */

/* Navbar container */
.navbar {
  padding: 12px 0; /* reduce vertical height */
}

/* Inner container (if exists) */
.navbar .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Logo */
.navbar-brand,
.logo {
  font-size: 20px;   /* optional: slightly smaller */
  line-height: 1;
  padding: 0;
}

/* Navigation links */
.navbar-nav li a,
.nav-links a {
  padding: 6px 14px; /* reduce link height */
  font-size: 14px;
  line-height: 1.2;
}

/* Remove extra margins */
.navbar * {
  margin-top: 0;
  margin-bottom: 0;
}




/* ================================================= */
/* HERO GLOBAL (APPLIES TO ALL PAGES) */
/* ================================================= */

.hero {
  position: relative;
  min-height: 85vh;        /* normal full hero for HOME */
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
}

/* ================================================= */
/* ABOUT PAGE ONLY – SHORT HERO + WHITE PEEK */
/* ================================================= */

.about-page .hero {
  min-height: 65vh;        /* shorter hero ONLY on About */
  padding-top: 110px;
  padding-bottom: 100px;
}

/* Show next section peek ONLY on About */
.about-page .hero + section {
  margin-top: -70px;
  padding-top: 120px;
  background: #ffffff;
}

/* White fade ONLY on About */
.about-page .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    #ffffff
  );
  pointer-events: none;
}





/* ================================================= */
/* ABOUT PAGE ONLY – BRIGHT CTA BUTTON */
/* ================================================= */

.about-page .cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary CTA – bright gold (About page only) */
.about-page .cta-buttons .btn-primary {
  background: #d4af37;          /* bright gold */
  color: #000000;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

/* Hover effect */
.about-page .cta-buttons .btn-primary:hover {
  background: #e6c75c;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}

/* Secondary CTA – outline (About page only) */
.about-page .cta-buttons .btn-outline {
  background: transparent;
  color: #ffffff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover for outline */
.about-page .cta-buttons .btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #ffffff;
}



/* ========================================= */
/* WEBSITE DEVELOPMENT HEADING – BRIGHT FIX */
/* ========================================= */

.heading-secondary {
  color: #ffffff;              /* bright white */
  font-weight: 600;            /* lighter than heavy bold */
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
}

/* Optional: premium gold emphasis (like second design) */
.heading-secondary::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;         /* gold */
  margin-top: 12px;
}



/* ================================================= */
/* FINAL CTA – MATCH FIRST IMAGE STYLE */
/* ================================================= */

.cta-section {
  background: #ffffff;
  padding: 80px 0 70px; /* reduced height */
}

.cta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Small top label */
.cta-section .subheading {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 14px;
}

/* Main heading */
.cta-section .heading-secondary {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  margin-bottom: 18px;
}

/* Gold italic word */
.cta-section .italic.text-gold {
  color: #d4af37;
  font-style: italic;
  font-weight: 600;
}

/* Description */
.cta-desc {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

/* Primary CTA */
.cta-buttons .btn-primary {
  background: #d4af37;
  color: #000;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* Outline CTA */
.cta-buttons .btn-outline {
  background: transparent;
  color: #111;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid #111;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
  background: #111;
  color: #fff;
}

/* Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
}

.cta-stat-item .value {
  font-size: 26px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 6px;
}

.cta-stat-item .label {
  font-size: 13px;
  color: #666;
}



/* ================================
   CORE VALUES – DARK PREMIUM STYLE
   (WHY CHOOSE US PAGE)
================================ */

/* Section background */
.values-section {
  background: #0b0b0b;
  padding: 100px 0;
}

/* Section label */
.values-section .label-gold {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* Section title */
.values-section .section-title {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 14px;
}

/* Section subtitle */
.values-section .section-subtitle {
  color: #b5b5b5;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card */
.value-card {
  background: linear-gradient(145deg, #161616, #0f0f0f);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Hover effect */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 60px rgba(212, 175, 55, 0.18);
}

/* Icon box */
.value-icon {
  width: 46px;
  height: 46px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 18px;
}

/* Card title */
.value-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Card text */
.value-card p {
  color: #cfcfcf;
  font-size: 14.5px;
  line-height: 1.7;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .values-section {
    padding: 70px 0;
  }

  .values-section .section-title {
    font-size: 32px;
  }
}



/* =====================================
   COMPETITIVE ANALYSIS – COMPARISON TABLE
===================================== */

.comparison-section {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 60%);
  padding: 110px 0;
}

/* Labels */
.comparison-section .label-gold {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* Title */
.comparison-section .section-title {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 14px;
}

/* Subtitle */
.comparison-section .section-subtitle {
  color: #bdbdbd;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
}

/* Table container */
.table-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(180deg, #171717, #0e0e0e);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* Table base */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

/* Table headers */
.comparison-table thead th {
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: #bdbdbd;
  background: #151515;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table thead th:first-child {
  text-align: left;
}

/* Highlight column header */
.comparison-table thead th.highlight-col {
  color: #d4af37;
  background: linear-gradient(180deg, #1d1a12, #15120c);
}

/* Rows */
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Cells */
.comparison-table td {
  padding: 18px;
  text-align: center;
  color: #cfcfcf;
}

/* Feature column */
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #ffffff;
}

/* Highlight column (RISE ARC) */
.comparison-table td.highlight-col {
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
}

/* Check & cross */
.check {
  color: #d4af37;
  font-weight: bold;
  font-size: 16px;
}

.cross {
  color: #6f6f6f;
  font-size: 16px;
}

/* Text values */
.comparison-table td:not(.highlight-col):not(:first-child) {
  color: #9f9f9f;
}

/* Hover row */
.comparison-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

/* Mobile */
@media (max-width: 900px) {
  .comparison-table {
    font-size: 13px;
  }

  .comparison-section .section-title {
    font-size: 34px;
  }

  .comparison-table td,
  .comparison-table th {
    padding: 14px;
  }
}




/* ================================
   COMPETITIVE ANALYSIS – TEXT FIX
   (REMOVE WHITE BLOCKS)
================================ */

/* Ensure section is fully dark */
.comparison-section {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 65%);
}

/* REMOVE any accidental backgrounds */
.comparison-section h2,
.comparison-section p,
.comparison-section .section-title,
.comparison-section .section-subtitle {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Title */
.comparison-section .section-title {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 12px;
}

/* Subtitle */
.comparison-section .section-subtitle {
  color: #c9c9c9;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Label */
.comparison-section .label-gold {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}



/* ================================
   RISE ARC METHODOLOGY SECTION
================================ */

.methodology-section {
  background: #ffffff;
  padding: 110px 0;
}

/* Layout */
.methodology-flex {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Left content */
.methodology-content .label-gold {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.methodology-content .section-title-left {
  font-size: 46px;
  line-height: 1.2;
  color: #111;
  margin-bottom: 18px;
}

.methodology-content .section-subtitle-left {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Steps */
.methodology-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Number circle */
.method-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d4af37;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text */
.method-text h4 {
  font-size: 17px;
  color: #111;
  margin-bottom: 6px;
}

.method-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  max-width: 460px;
}

/* Right image */
.methodology-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .methodology-flex {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .methodology-content .section-title-left {
    font-size: 38px;
  }
}
/* OUR APPROACH – Methodology title (dark black like second image) */
.methodology-section .section-title,
.section-title.left {
  color: #0b0b0b;   /* rich dark black */
}


/* ================================
   CLIENT SUCCESS STATS – DARK STYLE
================================ */

.stats-section {
  background: radial-gradient(circle at top, #141414, #000);
  padding: 120px 0;
  text-align: center;
}

.stats-section .label-gold {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stats-section .section-title {
  color: #ffffff;
  font-size: 46px;
  margin: 15px 0;
}

.stats-section .section-subtitle {
  color: #bfbfbf;
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 16px;
}

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

/* Cards */
.stat-item {
  background: linear-gradient(145deg, #1b1b1b, #111);
  border-radius: 14px;
  padding: 40px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

/* Icon */
.stat-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  font-size: 22px;
  color: #d4af37;
}

/* Number */
.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 6px;
}

/* Title */
.stat-item p {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Description */
.stat-item small {
  color: #a9a9a9;
  font-size: 14px;
  line-height: 1.5;
}


/* ================================
   PERFORMANCE GUARANTEES – DARK UI
================================ */

.guarantees-section {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 100px 0;
}

.guarantees-section .label-gold {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
}

.guarantees-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin: 14px 0;
}

.guarantees-section .section-subtitle {
  color: #bdbdbd;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* GRID */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.guarantee-card {
  background: linear-gradient(145deg, #1b1b1b, #0f0f0f);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(212,175,55,0.15);
}

/* ICON */
.g-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 20px;
}

/* TITLE */
.guarantee-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.guarantee-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* LIST */
.guarantee-card ul {
  padding-left: 0;
  list-style: none;
}

.guarantee-card li {
  color: #bdbdbd;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.guarantee-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}


/* ===============================
   TESTIMONIALS – LIGHT THEME
================================ */

.testimonials-section {
  background: #ffffff;
  padding: 120px 0;
}

.testimonials-section .label-gold {
  color: #d4af37;
}

.testimonials-section .section-title {
  color: #0b0b0b;
}

.testimonials-section .section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Header */
.testimonial-card .header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-card img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h4 {
  color: #0b0b0b;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.testimonial-card p {
  color: #777;
  font-size: 0.85rem;
}

/* Stars */
.testimonial-card .stars {
  color: #d4af37;
  font-size: 0.9rem;
}

/* Quote */
.testimonial-card .quote {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 15px 0;
}

/* Location */
.testimonial-card .location {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===============================
   CTA BELOW TESTIMONIALS (DARK)
================================ */

.cta-section {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding: 120px 0;
}

.cta-section .section-title-light,
.cta-section .section-subtitle-light {
  color: #ffffff;
}


/* ================================
   PERFORMANCE GUARANTEES – FIX
================================ */

.guarantees-section {
  background: #ffffff;
  padding: 100px 0;
}

/* Remove unwanted white bars */
.guarantees-section .section-title-light,
.guarantees-section .section-subtitle-light {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: block;
}

/* Title styling (like second image) */
.guarantees-section h2 {
  color: #0b0b0b; /* deep black */
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

/* Subtitle styling */
.guarantees-section p.section-subtitle,
.guarantees-section p.section-subtitle-light {
  color: #6b6b6b;
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.6;
}

/* Cards */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.guarantee-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Card headings */
.guarantee-card h3 {
  color: #111;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Card text */
.guarantee-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* List items */
.guarantee-card ul {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.guarantee-card ul li {
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.guarantee-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d4af37; /* gold */
  font-weight: bold;
}

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

  .guarantees-section h2 {
    font-size: 32px;
  }
}

/* ================================
   CLIENT SUCCESS STATISTICS
   ================================ */

.stats-section {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 65%);
  padding: 110px 0 130px;
  text-align: center;
  position: relative;
}
/* ============================= */
/* CLIENT SUCCESS STATS – FIX */
/* ============================= */

.stats-section {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 100px 0;
  text-align: center;
}

.stats-section .label-gold {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.stats-section .personal-text {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* 🔥 THIS IS THE IMPORTANT PART */
.stats-section .section-subtitle {
  background: transparent !important;
  color: #cfcfcf;
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}


/* =====================================
   WHY CHOOSE US – CTA SECTION ONLY
===================================== */

.why-choose-us-page .cta-section {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 140px 0;
  text-align: center;
}

/* REMOVE WHITE BAR / WHITE BLOCK */
.why-choose-us-page .cta-section .section-subtitle,
.why-choose-us-page .cta-section .section-subtitle-light {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #cfcfcf;
}

/* GOLD LABEL */
.why-choose-us-page .cta-section .label-gold {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 12px;
}

/* CTA HEADING */
.why-choose-us-page .cta-section h2 {
  color: #ffffff;
  font-size: 52px;
  margin-bottom: 20px;
}

/* CTA BUTTONS */
.why-choose-us-page .cta-section .btn-gold {
  background: #d4af37;
  color: #000;
  border-radius: 10px;
}

.why-choose-us-page .cta-section .btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 10px;
}

/* BUTTON HOVER */
.why-choose-us-page .cta-section .btn-gold:hover {
  background: #c5a230;
}

.why-choose-us-page .cta-section .btn-outline:hover {
  background: #ffffff;
  color: #000;
}
/* =====================================================
   WHY CHOOSE US – CTA SECTION FIX (NO WHITE BLOCK)
   ===================================================== */

.why-choose-us .cta-section {
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.04),
    #000 70%
  );
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ❌ REMOVE ANY WHITE BAR / STRIP */
.why-choose-us .cta-section::before,
.why-choose-us .cta-section::after,
.why-choose-us .cta-section .white-bar,
.why-choose-us .cta-section .section-divider {
  display: none !important;
  content: none !important;
}

/* GOLD LABEL */
.why-choose-us .cta-section .label-gold {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* MAIN HEADING – LIKE SECOND PHOTO */
.why-choose-us .cta-section .section-title-light {
  color: #ffffff;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* SUBTITLE */
.why-choose-us .cta-section .section-subtitle-light {
  color: #cfcfcf;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* BUTTONS */
.why-choose-us .cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.why-choose-us .btn-gold {
  background: #d4af37;
  color: #000;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.why-choose-us .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-us .cta-section .section-title-light {
    font-size: 32px;
  }
}
/* ================================
   CORE VALUES – WHITE BACKGROUND
   (Why Choose Us page only)
================================ */

/* Section background */
.values-section {
  background: #ffffff;
  color: #111;
  padding: 100px 0;
}

/* Headings */
.values-section .section-title {
  color: #111;
}

/* Subtitle */
.values-section .section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Card title */
.value-card h3 {
  color: #111;
  margin-bottom: 12px;
}

/* Card text */
.value-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

/* Icon */
.value-icon {
  width: 44px;
  height: 44px;
  background: #f5efe3;
  color: #c9a24d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
/* ===============================
   ROSHAN CTA TITLE – FINAL FIX
   ONLY FOR "LET'S BUILD" TITLE
   =============================== */

.roshan-title {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;

  color: #ffffff;
  font-size: 46px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;

  display: block !important;
}

/* kill ALL pseudo elements if any */
.roshan-title::before,
.roshan-title::after {
  content: none !important;
  display: none !important;
}


/* ===============================
   QUICK CONTACT – CLEAN CARD STYLE
   =============================== */

.contact-cards {
  padding: 80px 0;
  background: #ffffff;
}

.container.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* ICON (circle like first photo) */
.contact-card::before {
  content: "";
  width: 44px;
  height: 44px;
  background: #f6f1e5;
  border-radius: 50%;
  display: block;
  margin: 0 auto 16px;
}

/* TITLES */
.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.contact-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

/* HIGHLIGHT TEXT */
.contact-card strong {
  font-size: 15px;
  font-weight: 600;
  color: #caa23d; /* gold */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container.grid-3 {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   QUICK CONTACT – CLEAN CARD STYLE
   =============================== */

.contact-cards {
  padding: 80px 0;
  background: #ffffff;
}

.container.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* ICON (circle like first photo) */
.contact-card::before {
  content: "";
  width: 44px;
  height: 44px;
  background: #f6f1e5;
  border-radius: 50%;
  display: block;
  margin: 0 auto 16px;
}

/* TITLES */
.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.contact-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

/* HIGHLIGHT TEXT */
.contact-card strong {
  font-size: 15px;
  font-weight: 600;
  color: #caa23d; /* gold */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .container.grid-3 {
    grid-template-columns: 1fr;
  }
}
/* CONTACT CARDS */
.contact-cards {
  padding: 80px 0;
  background: #ffffff;
}

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

/* CARD */
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ICON */
.contact-icon {
  width: 56px;
  height: 56px;
  background: #f6efe0;   /* light gold */
  color: #d4af37;        /* gold */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

/* TEXT */
.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.contact-card strong {
  font-size: 15px;
  font-weight: 600;
  color: #d4af37;
}
/* REMOVE UNWANTED TOP CIRCLE ABOVE ICON */
.contact-card::before,
.contact-card::after {
  display: none !important;
  content: none !important;
}

/* ICON STYLING – KEEP ONLY ONE CIRCLE */
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff7e6;        /* light gold background */
  border: 1.5px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;        /* center + spacing */
}

/* REMOVE ANY EXTRA BACKGROUND FROM CARD */
.contact-card {
  background-image: none !important;
}
/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  background: #ffffff;
  padding: 80px 0;
}

/* LABEL */
.section-label-dark {
  display: inline-block;
  background: #000;
  color: #f5c84c;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

/* HEADING */
.contact-form-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

/* DESCRIPTION */
.form-desc {
  color: #6b7280;
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 30px;
}

/* FORM CARD */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  max-width: 420px;
}

/* ROW FOR FIRST + LAST NAME */
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

/* INPUTS + SELECT + TEXTAREA */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  background: #fff;
}

/* TEXTAREA */
.contact-form textarea {
  resize: none;
  margin-bottom: 18px;
}

/* PLACEHOLDER COLOR */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

/* SUBMIT BUTTON */
.contact-form .btn-primary {
  width: 100%;
  background: #d4af37;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

/* BUTTON HOVER */
.contact-form .btn-primary:hover {
  background: #c9a634;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form {
    max-width: 100%;
  }
}
.contact-form {
  background: #111;
  padding: 40px;
  border-radius: 14px;
  max-width: 480px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.contact-form select {
  cursor: pointer;
}

.btn-primary {
  width: 100%;
  background: #d4af37;
  color: #000;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #c9a52f;
}
/* WhatsApp Card */
.whatsapp-card {
  text-align: center;
}

/* WhatsApp Icon */
.whatsapp-icon {
  background: #25D366;
  color: #fff;
  font-size: 22px;
}

/* WhatsApp Link Button */
.whatsapp-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border-radius: 22px;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: #c9a52f;
}
/* ================================
   QUICK CONTACT – DARK CARDS
   ================================ */

.contact-cards {
  padding: 80px 0;
  background: #ffffff;
}

.contact-cards .container.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* CARD */
.contact-card {
  background: linear-gradient(180deg, #111111, #0b0b0b);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* ICON CIRCLE */
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
  color: #d4af37;
}

/* WHATSAPP SPECIAL ICON */
.whatsapp-icon {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.6);
  color: #25d366;
}

/* TITLES */
.contact-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

/* TEXT */
.contact-card p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* MAIN VALUE */
.contact-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #d4af37;
}

/* WHATSAPP BUTTON */
.whatsapp-link {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 22px;
  background: #d4af37;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background: #ffffff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 22px;
  }
}
/* ===============================
   DARK CONTACT CARDS
================================ */

.contact-cards {
  background: #0b0f14; /* section dark bg (optional) */
  padding: 80px 0;
}

/* CARD BASE */
.contact-card {
  background: linear-gradient(180deg, #151a21, #0f1318);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.75);
}

/* ICON CIRCLE */
.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* WHATSAPP ICON SPECIAL */
.whatsapp-icon {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25d366;
}

/* HEADINGS */
.contact-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* DESCRIPTION TEXT */
.contact-card p {
  color: #bfc6d1;
  font-size: 14px;
  margin-bottom: 14px;
}

/* STRONG TEXT (PHONE / EMAIL) */
.contact-card strong {
  color: #d4af37;
  font-size: 15px;
  font-weight: 600;
}

/* WHATSAPP BUTTON */
.whatsapp-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 26px;
  border-radius: 30px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.whatsapp-link:hover {
  background: #1ebe5d;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    padding: 30px 22px;
  }
}




.stat-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-num {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 6px;
}

.stat-item p {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-item small {
  color: #cfcfcf;
  line-height: 1.6;
}
/* Contact CTA Button Box */
.contact-cta-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

/* Gold CTA Button */
.contact-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f0c75e);
  color: #000;
  padding: 18px 60px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}



/* Hover Effect */
.contact-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.55);
}
.get-in-touch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}



.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

/* bullet (dot) */
.footer-links ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #bfbfbf; /* normal color */
  font-size: 18px;
  transition: color 0.3s ease;
}

/* link text */
.footer-links ul li a {
  color: #bfbfbf; /* normal text */
  text-decoration: none;
  transition: color 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.footer-links ul li:hover::before,
.footer-links ul li:hover a {
  color: #d4af37; /* GOLD */
}

/* optional: active link always gold */
.footer-links ul li.active::before,
.footer-links ul li.active a {
  color: #d4af37;
}










.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.footer-links ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  text-align: left;
}

.footer-links ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #bfbfbf;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links ul li a {
  color: #bfbfbf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li:hover::before,
.footer-links ul li:hover a {
  color: #d4af37;
}

.footer-links ul li.active::before,
.footer-links ul li.active a {
  color: #d4af37;
}


.navbar-menu li a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar-menu li.active a,
.navbar-menu li a:hover {
  color: #d4af37; /* GOLD */
}
.about-cta {
  text-align: center;
  margin-top: 40px;
}

.about-cta-text {
  color: #bfbfbf;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.btn-read-more {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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


.industries-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.subheading {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
}

.heading {
  font-size: 40px;
  margin: 12px 0;
}

.desc {
  color: #bfbfbf;
  font-size: 16px;
}

/* LIST */
.industries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 40px;
}

/* ITEM */
.industry-item {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: #cfcfcf;
  transition: all 0.3s ease;
}

/* GOLD DOT */
.industry-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

/* HOVER EFFECT */
.industry-item:hover {
  color: #d4af37;
  transform: translateX(4px);
}

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

@media (max-width: 600px) {
  .industries-list {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 30px;
  }
}





/* ================================
   SERVICES SECTION
================================ */
.services {
  padding: 80px 0;
  background: #f5f4f2;
}

.services .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #111;
}

.section-title .gold-text {
  color: #c9a24d;
}

.section-subtitle {
  margin-top: 10px;
  color: #666;
  font-size: 15px;
}

/* ================================
   SERVICES GRID
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================================
   SERVICE CARD
================================ */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid #e6e6e6;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
}

/* Hover effect (subtle luxury) */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: #c9a24d;
}

/* ================================
   ICON BOX
================================ */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f7f3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #c9a24d;
  flex-shrink: 0;
}

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

/* ================================
   CARD CONTENT
================================ */
.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 28px;
  }
}




/* WHY CHOOSE SECTION */
.why-choose {
  padding: 100px 0;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.why-content .section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201, 162, 91, 0.12);
  color: #c9a25b;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.why-title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.gold-text {
  color: #c9a25b;
}

.why-desc {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.7;
  margin-bottom: 14px;
}

.why-cta-text {
  margin-top: 18px;
  font-size: 15px;
  color: #ddd;
  font-style: italic;
}

/* BUTTON */
.btn-read-more {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #c9a25b, #e6c37a);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 91, 0.35);
}

/* RIGHT IMAGE */
.why-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-title {
    font-size: 34px;
  }

  .btn-read-more {
    margin-left: auto;
    margin-right: auto;
  }
}




/* WHY TRUST POINTS */
/* WHY TRUST POINTS */
.why-points {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 91, 0.15);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 91, 0.35);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 162, 91, 0.15);
  color: #c9a25b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.why-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.why-card ul {
  padding-left: 0;
  list-style: none;
}

.why-card ul li {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.why-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a25b;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-points {
    grid-template-columns: 1fr;
  }
}




/* CTA SECTION */
.cta-luxury {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  padding: 120px 20px;
  color: #fff;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* Tag */
.cta-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

/* Title */
.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title span {
  color: #d4af37;
}

/* Text */
.cta-text {
  max-width: 520px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 50px;
}

/* Contact Info */
.cta-contact {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-item small {
  color: #888;
  font-size: 11px;
  letter-spacing: 1px;
}

.cta-item p {
  margin: 0;
  font-size: 15px;
}

/* Icons */
.cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e7c96b, #d4af37);
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.65);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 36px;
  }

  .cta-contact {
    flex-direction: column;
    gap: 24px;
  }
}
.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta-text {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.7;
  color: #bfbfbf;
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #f2d57e);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
}



/* ===============================
   SERVICES CTA (Below Cards)
================================ */

/* ================================
   SERVICES CTA (Below Cards)
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CTA spans full width below cards */
.services-cta {
  grid-column: 1 / -1;   /* FULL WIDTH */
  text-align: center;
  margin-top: 40px;
}

/* CTA text */
.services-cta-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 22px; /* CENTER TEXT */
}

/* CTA button */
.services-cta-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #000;
  background: linear-gradient(135deg, #e6c15a, #cfaa43);
  border-radius: 999px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(207, 164, 58, 0.35);
  transition: all 0.3s ease;
}

.services-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(207, 164, 58, 0.5);
}



/* ================= CTA LUXURY SECTION ================= */
.cta-luxury {
  background: radial-gradient(circle at top, #141414, #000);
  padding: 100px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.cta-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #e6c15a;
  background: rgba(230, 193, 90, 0.12);
  margin-bottom: 18px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 18px;
}

.cta-title span {
  color: #e6c15a;
}

.cta-text {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
}

/* CONTACT INFO */
.cta-contact {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 193, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6c15a;
  font-size: 18px;
}

.cta-item small {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

.cta-item p {
  color: #fff;
  font-size: 14px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e6c15a, #cfa43a);
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(230, 193, 90, 0.4);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(230, 193, 90, 0.6);
}

/* RIGHT IMAGE */
.cta-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }
}



.footer {
  background: #000;
  color: #cfcfcf;
  padding: 80px 0 30px;
  font-family: "Playfair Display", serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

/* Brand */
.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.diamond {
  width: 16px;
  height: 16px;
  background: #d4af37;
  transform: rotate(45deg);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 360px;
}

.footer-socials {
  margin-top: 22px;
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #d4af37;
  color: #000;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links .active {
  color: #d4af37;
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 14px;
  color: #cfcfcf;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

.footer-policy a {
  color: #888;
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}









/* Quick Links container */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each link item */
.footer-links li {
  margin-bottom: 10px;   /* 👈 KEY: controls vertical spacing */
  line-height: 1.4;      /* compact like first photo */
}

/* Links */
.footer-links li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Active / hover state */
.footer-links li a:hover,
.footer-links li a.active {
  color: #e6c15a;
}




/* CONTACT SECTION */
.contact-form-section {
  padding: 100px 0;
  background: #fff;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LEFT SIDE */
.contact-left {
  max-width: 520px;
}

.section-label-dark {
  display: inline-block;
  background: #000;
  color: #f5c86a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-desc {
  color: #555;
  font-size: 15px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  background: #0b0b0b;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.contact-form select {
  cursor: pointer;
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, #e6c15a, #cfa43a);
  color: #000;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(207, 164, 58, 0.45);
}

/* RIGHT SIDE (LOTTIE) */
.contact-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-right dotlottie-wc {
  width: 360px;
  height: 360px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-left {
    margin: 0 auto;
  }

  .contact-right dotlottie-wc {
    width: 280px;
    height: 280px;
  }
}





/* RIGHT SIDE – LOTTIE BACKGROUND */
.contact-right {
  background: radial-gradient(
    circle at top left,
    #1a1a1a,
    #000000
  );
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;

  /* subtle luxury glow */
  box-shadow: 
    inset 0 0 0 1px rgba(212, 175, 55, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Lottie size control */
.contact-right dotlottie-wc {
  width: 320px;
  height: 320px;
}








.spline-full {
  width: 100%;
  height: 100vh;
  border: none;
  display: block;
}


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

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.section-label {
  color: #d4af37; /* gold stays visible */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title {
  color: #f2f2f2; /* dark white (main fix) */
  font-size: 48px;
  font-weight: 600;
  margin: 12px 0;
}

.section-subtitle {
  color: #bfbfbf; /* soft dark white / gray */
  font-size: 16px;
  max-width: 700px;
  line-height: 1.6;
}




.footer-brand {
  text-align: left;
}

.footer-logo-img {
  display: block;          /* VERY IMPORTANT */
  max-width: 420px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-logo-img {
    max-width: 300px;
  }
}



.section-title {
  color: #1a1a1a; /* makes "Our" visible (dark text) */
  font-size: 48px;
  font-weight: 600;
}

.gold-text {
  color: #d4af37; /* gold for Services */
}

.footer-contact {
  color: #bfbfbf;
}

.footer-heading {
  color: #f5c26b; /* golden heading */
  margin-bottom: 12px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact ul li i {
  color: #f5c26b; /* golden icons */
  font-size: 16px;
}




/* =========================
   NAVBAR
========================= */
/* NAVBAR */








/* MAIN LOGO */
.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;

  display: flex;
  flex-direction: column; /* tagline below */
  align-items: flex-start;
}

/* RISE ARC wrapper */
.logo-main {
  display: inline-flex;
  gap: 6px;
}

/* RISE - white */
.logo-main .rise {
  color: var(--white);
}

/* ARC - gold gradient */
.logo-main .arc {
  background: linear-gradient(
    180deg,
    #fff1b0,
    var(--gold),
    #9e6b1f
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAGLINE */
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
}








/* MOBILE */
/* =====================================
   MOBILE VIEW ONLY (FINAL FIX)
=

/* =====================================
   SERVICES SECTION – MOBILE ONLY
===================================== */
@media (max-width: 768px) {

  /* SERVICES GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* SERVICE CARD */
  .service-card {
    padding: 16px;
    border-radius: 14px;
    text-align: left;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* ICON */
  .service-card .icon-box {
    margin-bottom: 10px;
  }

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

  /* TITLE */
  .service-card .card-title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  /* DESCRIPTION */
  .service-card .card-desc {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.85;
  }

}

/* EXTRA SMALL PHONES (OPTIONAL SAFETY) */
@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   SERVICES SECTION – MOBILE ONLY
===================================== */
@media (max-width: 768px) {

  /* GRID → 2 x 2 layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* SERVICE CARD */
  .service-card {
    padding: 16px;
    border-radius: 14px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* ICON */
  .service-card .icon-box {
    margin-bottom: 10px;
  }

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

  /* TITLE */
  .service-card .card-title {
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  /* DESCRIPTION */
  .service-card .card-desc {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 10px;
  }

  /* READ MORE */
  .service-card .read-more {
    font-size: 12px;
    font-weight: 500;
    color: #c9a45c; /* gold tone */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
  }

  .service-card .read-more svg {
    width: 14px;
    height: 14px;
  }

}

/* EXTRA SMALL DEVICES (OPTIONAL SAFETY) */
@media (max-width: 420px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* =====================================
   COMPARISON TABLE – MOBILE ONLY
===================================== */
@media (max-width: 768px) {

  .table-container {
    overflow-x: hidden;
  }

  .comparison-table {
    width: 100%;
    border-spacing: 0;
  }

  /* Hide table header */
  .comparison-table thead {
    display: none;
  }

  /* Convert rows to cards */
  .comparison-table tr {
    display: block;
    margin-bottom: 16px;
    background: #111;
    border-radius: 14px;
    padding: 14px;
  }

  /* Each cell stacked */
  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border: none;
    font-size: 13px;
  }

  /* Feature title */
  .comparison-table td:first-child {
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 6px;
    padding-bottom: 8px;
  }

  /* Labels before values */
  .comparison-table td:nth-child(2)::before {
    content: "Rise Arc";
    color: #c9a45c;
    font-weight: 500;
  }

  .comparison-table td:nth-child(3)::before {
    content: "Agency";
    color: #aaa;
    font-weight: 500;
  }

  .comparison-table td:nth-child(4)::before {
    content: "Freelancer";
    color: #aaa;
    font-weight: 500;
  }

  .comparison-table td::before {
    font-size: 12px;
  }

  /* Align check / cross */
  .comparison-table .check {
    color: #c9a45c;
    font-size: 14px;
  }

  .comparison-table .cross {
    color: #777;
    font-size: 14px;
  }

  /* Highlight Rise Arc column */
  .comparison-table .highlight-col {
    background: rgba(201, 164, 92, 0.08);
    border-radius: 8px;
    padding: 6px 8px;
  }
}
/* Brighten ONLY Core Values heading */
.core-values .section-title {
  color: #eaeaea; /* dark white */
}
/* =====================================
   SERVICES SECTION NOTE: DARK MODE
   (ONLY this section)
===================================== */

#services {
  background: #0b0b0b; /* dark background */
}

/* Heading */
#services .section-title {
  color: #f2f2f2; /* bright dark-white */
}

/* Gold highlighted word */
#services .section-title .gold-text {
  color: #c9a45c; /* premium gold */
}

/* Subtitle */
#services .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* Service cards */
#services .service-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Card title */
#services .card-title {
  color: #f5f5f5;
}

/* Card description */
#services .card-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Icons */
#services .icon-box svg {
  stroke: #c9a45c;
}
/* =====================================
   OVERVIEW SECTION – DARK MODE
   (ONLY this section)
===================================== */

.overview-section {
  background: #0b0b0b;
}

/* Small top label */
.overview-section .subheading {
  color: #c9a45c; /* gold */
  letter-spacing: 1px;
}

/* Main heading */
.overview-section .heading-primary {
  color: #f2f2f2; /* bright white */
}

/* Intro paragraph */
.overview-section .intro-text {
  color: rgba(255, 255, 255, 0.65);
}

/* Cards */
.overview-section .service-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Card title */
.overview-section .card-title {
  color: #f5f5f5;
}

/* Card description */
.overview-section .card-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Icons */
.overview-section .icon-box svg {
  stroke: #c9a45c;
}

/* Read more link */
.overview-section .read-more {
  color: #c9a45c;
}

.overview-section .read-more svg {
  stroke: #c9a45c;
}






/* =========================
   MOBILE NAVBAR FIX ONLY
   ========================= */
@media (max-width: 768px) {

  /* Fullscreen mobile menu */
  .navbar-menu {
    position: fixed;          /* always relative to screen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;            /* hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 9999;
  }

  /* Show menu when active */
  .navbar-menu.active {
    display: flex;
  }

  /* Menu text styling (mobile only) */
  .navbar-menu li a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
  }

  /* Hamburger / close icon stays fixed */
  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
  }

}

/* ===============================
   MOBILE NAVBAR FIX (ONLY MOBILE)
   =============================== */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

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




/* ===============================
   MOBILE NAVBAR ONLY
   =============================== */

.mobile-nav {
  display: none;
}

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

  /* Hide desktop navbar */
  .navbar {
    display: none;
  }

  /* Show mobile navbar */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
    border-bottom: 1px solid #222;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
  }

  /* Logo */
  .mobile-logo {
    text-decoration: none;
  }

  .mobile-logo-main {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .mobile-rise {
    color: #ffffff;
  }

  .mobile-arc {
    color: #c9a24d;
    margin-left: 4px;
  }

  .mobile-logo-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: #c9a24d;
    margin-top: 4px;
  }

  /* Hamburger */
  .mobile-hamburger {
    cursor: pointer;
  }

  .mobile-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
  }

  /* Menu */
  .mobile-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    background: #000;
    padding: 10px 0;
  }

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

  .mobile-menu li {
    text-align: center;
    padding: 14px 0;
    border-top: 1px solid #222;
  }

  .mobile-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
  }
}




/* ===============================
   SPLINE DEVICE CONTROL
   =============================== */

/* ===============================
   SPLINE RESPONSIVE FIX (ALL DEVICES)
   =============================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.spline-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Desktop & laptop (unchanged) */
@media (min-width: 1024px) {
  .spline-hero {
    transform: scale(1);
  }
}

/* Tablets */
@media (max-width: 1023px) and (min-width: 769px) {
  .spline-hero {
    transform: scale(0.95);
    transform-origin: center;
  }
}

/* Mobile fix (THIS IS THE MAGIC) */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* correct mobile viewport */
  }

  .spline-hero {
    transform: scale(0.85);
    transform-origin: center center;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.spline-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.spline-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.spline-pc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* Mobile spline hidden by default (PC view) */
.spline-mobile {
  display: none;
  width: 100%;
  height: 100%;
  border: none;
}

/* Show ONLY on mobile */
@media (max-width: 768px) {
  .spline-mobile {
    display: block;
  }
}
/* =========================
   DEFAULT (DESKTOP / PC)
   ========================= */

/* ===============================
   SPLINE RESPONSIVE VISIBILITY
   =============================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Common iframe styles */
.hero iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- DESKTOP DEFAULT ---------- */
.spline-pc {
  display: block;
}

.spline-mobile {
  display: none;
}

/* ---------- MOBILE ONLY ---------- */
@media (max-width: 768px) {
  .spline-pc {
    display: none !important;
  }

  .spline-mobile {
    display: block !important;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero iframe {
  width: 100%;
  height: 100%;
  border: none;
}




  /* Hide mobile elements by default (PC) */
.hero-mobile-text,
.spline-mobile {
  display: none;
}

/* MOBILE VIEW ONLY */
@media (max-width: 768px) {

  /* Hide PC content */
  .hero-content,
  .spline-pc {
    display: none !important;
  }

  /* Show mobile spline */
  .spline-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Mobile text over spline */
  .hero-mobile-text {
    display: block;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 16px;
  }

  .hero-mobile-text h1 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .hero-mobile-text p {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.5;
    opacity: 0.85;
  }
}
/* PC default */
.spline-pc {
  display: block;
}

/* Hide PC spline on mobile */
@media (max-width: 768px) {
  .spline-pc {
    display: none !important;
  }
}


/* ===== MOBILE HERO TEXT OVER SPLINE ===== */
@media (max-width: 768px) {

  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  /* Spline animation full screen */
  .spline-pc,
  .spline-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Move hero text ON TOP of animation */
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.5;
    opacity: 0.85;
  }
}





/* ===== HERO RESET ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

/* Spline background */
.spline-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* Text overlay */
.hero-text {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 20px;
}

/* Desktop text */
.hero-text h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #bcd4ff;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #b388ff, #ff7bdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
}

/* ===== MOBILE TUNING ONLY ===== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero-text p {
    font-size: clamp(14px, 4vw, 16px);
  }
}

/* iOS SAFETY */
html {
  -webkit-text-size-adjust: 100%;
}




/* ================= MOBILE HERO ONLY ================= */

/* Hide mobile hero by default (PC view) */
.hero-mobile {
  display: none;
}

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

  /* Hide PC hero on mobile */
  .hero {
    display: none !important;
  }

  /* Show mobile hero */
  .hero-mobile {
    display: block;
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
  }

  /* Mobile spline background */
  .spline-bg-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
  }

  /* Mobile text overlay */
  .hero-text-mobile {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 20px;
  }

  .hero-text-mobile h1 {
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #bcd4ff;
  }

  .hero-text-mobile h1 span {
    background: linear-gradient(90deg, #b388ff, #ff7bdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-text-mobile p {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 90%;
  }
}

/* iOS SAFETY */
html {
  -webkit-text-size-adjust: 100%;
}

/* ===== MOBILE HERO TEXT : WHITE + GOLD ===== */
@media (max-width: 768px) {

  .hero-text-mobile h1 {
    color: #ffffff;              /* pure white */
    font-weight: 500;
  }

  .hero-text-mobile h1 span {
    background: linear-gradient(
      90deg,
      #f5d27a,
      #d4af37,
      #f5d27a
    );                            /* gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-text-mobile p {
    color: rgba(255, 255, 255, 0.75); /* soft white */
  }
}
/* ===== FIX HERO HEADING FLOW (MOBILE ONLY) ===== */
@media (max-width: 768px) {

  .hero-text-mobile h1 {
    white-space: normal;          /* allow natural wrapping */
    word-break: keep-all;         /* prevent ugly breaks */
    text-wrap: balance;           /* modern balanced wrapping */
    letter-spacing: 0.2px;        /* smoother line flow */

    font-size: clamp(20px, 5.2vw, 28px);
    line-height: 1.25;
    max-width: 95%;
  }

}
/* ================= MOBILE LOGO SAME AS PC ================= */
@media (max-width: 768px) {

  /* Brand container */
  .mobile-logo-main {
    font-family: "Playfair Display", serif;   /* SAME font as PC */
    letter-spacing: 2px;
    display: flex;
    gap: 6px;
  }

  /* RISE */
  .mobile-rise {
    font-size: 22px;
    font-weight: 600;
    color: white; /* gold */
  }

  /* ARC */
  .mobile-arc {
    font-size: 22px;
    font-weight: 600;
    color: #f5d27a; /* gold */
  }

  /* Tagline */
  .mobile-logo-tagline {
    font-family: "Montserrat", sans-serif;   /* SAME as PC */
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 4px;
    color: rgba(245, 210, 122, 0.85);
    text-transform: uppercase;
  }
}
