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

/* CSS Variables */
:root {
  --bg-dark: #070708;
  --bg-dark-card: #111215;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --color-gold: #c59b27;
  --color-gold-hover: #e5b22d;
  --color-gold-rgb: 197, 155, 39;
  --color-dark-text: #0f1012;
  --color-dark-muted: #64748b;
  --color-light-text: #ffffff;
  --color-light-muted: #94a3b8;
  --border-light: #e2e8f0;
  --border-dark: #22252a;
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.12), 0 10px 15px -8px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark-text);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selection colors */
::selection {
  background-color: rgba(var(--color-gold-rgb), 0.3);
  color: var(--color-dark-text);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-hover);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

.btn:hover svg {
  transform: translateX(4px);
}

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

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  box-shadow: 0 8px 24px rgba(var(--color-gold-rgb), 0.3);
  transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(var(--color-gold-rgb), 0.2);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-light-text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  border-color: var(--color-light-text);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 14px 0;
}

header.scrolled {
  padding: 8px 0;
  background-color: rgba(7, 7, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.logo img, .logo-svg {
  height: 90px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo img, header.scrolled .logo-svg {
  height: 60px;
}

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

.nav-link {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-light-muted);
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
}

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

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

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

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-light-text);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Section Titles styling */
.section-tag {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: inherit;
}

/* Section numbers indicator */
.section-num {
  position: absolute;
  top: 40px;
  left: 40px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-family: var(--font-headings);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.2;
}

/* Hero Section (01) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  background-image: linear-gradient(to right, rgba(7, 7, 8, 0.95) 30%, rgba(7, 7, 8, 0.7) 70%), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-light-text);
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(var(--color-gold-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 10;
}

.hero-subtitle {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-light-muted);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-light-muted);
  font-family: var(--font-headings);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.scroll-down:hover {
  color: var(--color-gold);
  opacity: 1;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  50% { top: 14px; opacity: 0; }
  100% { top: 6px; opacity: 1; }
}

/* Stats Section (02) */
.stats {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
}

.stat-icon-wrapper {
  color: var(--color-gold);
}

.stat-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-headings);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark-text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-dark-muted);
  font-weight: 500;
}

/* Services Section (03) */
.services {
  background-color: var(--bg-light);
  position: relative;
}

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

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 48px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  color: var(--color-gold);
  margin-bottom: 30px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-dark-text);
}

.service-card p {
  color: var(--color-dark-muted);
  font-size: 14px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-dark-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link svg {
  width: 12px;
  height: 12px;
  transition: var(--transition-fast);
}

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

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

.service-card:hover .service-link svg {
  transform: translateX(4px);
  color: var(--color-gold);
}

/* Software Section (04) */
.software {
  background-color: var(--bg-white);
  position: relative;
}

.software-content {
  margin-top: 50px;
}

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

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

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

.software-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.software-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-gold-rgb), 0.2);
}

.software-card-icon-wrapper {
  color: var(--color-gold);
  background-color: var(--bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.software-card:hover .software-card-icon-wrapper {
  background-color: var(--color-gold);
  color: var(--bg-white);
  transform: scale(1.05);
}

.software-card-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.software-card h3 {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark-text);
}

.software-card p {
  color: var(--color-dark-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Software Banner */
.software-banner {
  background-color: var(--bg-light);
  border-left: 4px solid var(--color-gold);
  padding: 30px 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-sm);
  margin-top: 50px;
}

@media (max-width: 991px) {
  .software-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 20px;
  }
}

.software-banner-icon {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.software-banner-icon svg {
  width: 48px;
  height: 48px;
}

.software-banner-text {
  flex-grow: 1;
}

.software-banner-text h3 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark-text);
}

.software-banner-text p {
  color: var(--color-dark-muted);
  font-size: 15px;
}

.software-banner-action {
  flex-shrink: 0;
}

/* Portfolio Section (05) */
.portfolio {
  background-color: var(--bg-dark);
  color: var(--color-light-text);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(var(--color-gold-rgb), 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.portfolio-header .section-title {
  margin-bottom: 0;
}

.portfolio-controls {
  display: flex;
  gap: 16px;
}

.portfolio-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--color-light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.portfolio-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(var(--color-gold-rgb), 0.05);
}

.portfolio-btn svg {
  width: 18px;
  height: 18px;
}

.portfolio-slider-container {
  overflow: visible;
  position: relative;
}

.portfolio-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item {
  min-width: calc(33.333% - 20px);
  flex-shrink: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  group: true;
}

.portfolio-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.9) 0%, rgba(7, 7, 8, 0.4) 60%, transparent 100%);
  transition: var(--transition-smooth);
}

.portfolio-category {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portfolio-item-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-light-text);
  margin-bottom: 4px;
}

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

.portfolio-item:hover .portfolio-overlay {
  padding-bottom: 38px;
}

/* Process Section (05) */
.process {
  background-color: var(--bg-white);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

/* Continuous connector line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 1px;
  border-top: 2px dashed var(--border-light);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 10px;
}

.process-num-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: var(--transition-smooth);
}

.process-step:hover .process-num-wrapper {
  border-color: var(--color-gold);
  background-color: rgba(var(--color-gold-rgb), 0.05);
  box-shadow: 0 0 20px rgba(var(--color-gold-rgb), 0.15);
  transform: scale(1.05);
}

.process-num {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark-muted);
  transition: var(--transition-smooth);
}

.process-step:hover .process-num {
  color: var(--color-gold);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark-text);
}

.process-step p {
  color: var(--color-dark-muted);
  font-size: 13px;
  max-width: 220px;
  margin: 0 auto;
}

/* Testimonials Section (06) */
.testimonials {
  background-color: var(--bg-light);
  position: relative;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 48px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--color-gold-rgb), 0.1);
}

.testimonial-quote-icon {
  color: var(--color-gold);
  opacity: 0.15;
  margin-bottom: 10px;
}

.testimonial-quote-icon svg {
  width: 48px;
  height: 48px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--color-dark-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark-text);
}

.testimonial-info p {
  font-size: 12px;
  color: var(--color-dark-muted);
}

/* Blog Section (07) */
.blog {
  background-color: var(--bg-white);
  position: relative;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.blog-header .section-title {
  margin-bottom: 0;
}

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

.blog-card {
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-gold-rgb), 0.15);
}

.blog-img-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-category {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gold);
  background-color: rgba(var(--color-gold-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-date {
  font-size: 11px;
  color: var(--color-dark-muted);
}

.blog-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark-text);
  margin-bottom: 20px;
  line-height: 1.4;
  flex-grow: 1;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--color-gold);
}

.blog-link {
  font-family: var(--font-headings);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-dark-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link svg {
  width: 10px;
  height: 10px;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-link svg {
  transform: translateX(4px);
  color: var(--color-gold);
}

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

/* Footer Section */
footer {
  background-color: var(--bg-dark);
  color: var(--color-light-text);
  padding-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer Appointment Booking Section */
.footer-appointment {
  background: linear-gradient(135deg, var(--bg-dark-card) 0%, #16171b 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 80px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.appointment-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-light-text);
  margin-bottom: 16px;
}

.appointment-info p {
  color: var(--color-light-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.appointment-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.appointment-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light-text);
  font-size: 14px;
}

.appointment-benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.appointment-form-wrapper {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 30px;
  position: relative;
}

.appointment-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

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

.appointment-form label {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-light-muted);
  letter-spacing: 1px;
}

.appointment-form input,
.appointment-form select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--color-light-text);
  font-family: var(--font-body);
  font-size: 13.5px;
  width: 100%;
  transition: var(--transition-fast);
}

.appointment-form select option {
  background-color: var(--bg-dark-card);
  color: var(--color-light-text);
}

.appointment-form input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.appointment-form input:focus,
.appointment-form select:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(var(--color-gold-rgb), 0.1);
}

.appointment-form .btn {
  width: 100%;
  padding: 15px;
  font-size: 13.5px;
}

/* Error Message Styling */
.error-message {
  display: none;
  color: #ef4444;
  font-size: 12px;
  font-family: var(--font-body);
  margin-top: 4px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.appointment-form input.error,
.appointment-form select.error {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

/* Success Message styling */
.appt-success-card {
  text-align: center;
  padding: 40px 10px;
}

.appt-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(var(--color-gold-rgb), 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.appt-success-icon svg {
  width: 32px;
  height: 32px;
}

.appt-success-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-gold);
}

.appt-success-card p {
  font-size: 14px;
  color: var(--color-light-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer-appointment {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }
}


/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.5fr 1.5fr 1.8fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col h4 {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-light-text);
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-desc {
  color: var(--color-light-muted);
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light-muted);
  transition: var(--transition-fast);
}

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

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--color-light-muted);
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--color-light-muted);
  line-height: 1.4;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-col p.newsletter-desc {
  font-size: 13px;
  color: var(--color-light-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  position: relative;
  display: flex;
}

.newsletter-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 14px 50px 14px 16px;
  color: var(--color-light-text);
  font-family: var(--font-body);
  font-size: 13px;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 40px;
  background-color: var(--color-gold);
  border: none;
  border-radius: 2px;
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.newsletter-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.newsletter-btn:hover svg {
  transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-light-muted);
}

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

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

/* Scroll reveal class animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .portfolio-item {
    min-width: calc(50% - 15px);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    padding-left: 90px;
    text-align: left;
  }
  
  .process-step::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 35px;
    height: calc(100% + 10px);
    width: 2px;
    border-left: 2px dashed var(--border-light);
    z-index: 1;
  }
  
  .process-step:last-child::before {
    display: none;
  }
  
  .process-num-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  
  .process-step p {
    margin: 0;
    max-width: 100%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  
  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  header .btn-outline-gold {
    display: none;
  }

  .logo img, .logo-svg {
    height: 55px;
  }

  header.scrolled .logo img, header.scrolled .logo-svg {
    height: 44px;
  }

  .scroll-down {
    display: none;
  }

  .section-num {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark-card);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    transition: 0.5s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .portfolio {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .portfolio-image-wrapper {
    height: 150px;
    aspect-ratio: auto;
  }
  
  .portfolio-controls {
    align-self: flex-end;
  }
  
  .portfolio-item {
    min-width: 260px;
    max-width: 260px;
  }
  
  .appointment-form .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .appointment-form-wrapper {
    padding: 20px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .blog-header .btn {
    width: 100%;
  }
}

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

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .blog-header .btn {
    width: 100%;
  }

  .blog-card {
    border-radius: 2px;
  }

  .blog-content {
    padding: 16px;
  }

  .blog-title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-col:first-child {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
