/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FEFCF5;
  color: #1E1E2A;
  line-height: 1.5;
  overflow-x: hidden;
}

section {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== THEME COLORS ===== */
:root {
  --primary-deep: #200F3B;
  --primary-gold: #D1A52A;
  --primary-gold-light: #FFBDO3;
  --secondary-blue: #161E85;
  --secondary-yellow: #FDF080;
  --white: #FFFFFF;
  --light-gray: #F8F9FC;
  --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 35px -12px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ===== TYPOGRAPHY & GLOBAL ===== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

.first-name {
  color: var(--secondary-blue);
  font-weight: 700;
}

.last-name {
  color: var(--primary-gold);
  font-weight: 700;
}

.highlight-text {
  color: var(--primary-gold);
  text-decoration: none;
  border-bottom: none;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: #4A4A5A;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}

.btn-solid {
  background: var(--primary-deep);
  color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.btn-solid:hover {
  background: var(--secondary-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -10px var(--primary-deep);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-deep);
  color: var(--primary-deep);
}

.btn-outline:hover {
  background: var(--primary-deep);
  color: white;
  transform: translateY(-3px);
}

/* ===== STICKY HEADER - BULLETPROOF (Fixed Position) ===== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  padding: 16px 0;
}

/* Add scrolled class effect via JS */
.sticky-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover .first-name,
.logo:hover .last-name {
  color: var(--primary-gold);
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #2D2F36;
  transition: 0.2s;
  font-size: 1rem;
  position: relative;
}

/* Underline effect on hover */
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--primary-gold);
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-deep);
  position: relative;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 5px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
  z-index: 999;
  padding: 100px 24px 40px;
  overflow-y: auto;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  width: 100%;
  text-align: center;
}

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-deep);
  display: inline-block;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
}

.mobile-nav a:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
}

/* Add padding to main to prevent content from hiding under fixed header */
main {
  padding-top: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .desktop-nav ul {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .sticky-header {
    padding: 12px 0;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block;
  }
  
  /* Adjust main padding for mobile */
  main {
    padding-top: 70px;
  }
  
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
  
  .mobile-nav ul {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }
  
  main {
    padding-top: 65px;
  }
  
  .mobile-nav a {
    font-size: 1rem;
    padding: 8px 16px;
  }
  
  .mobile-nav ul {
    gap: 15px;
  }
}

/* ===== HERO SECTION - FIXED FLICKER ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('../images/hero1.jpg') center center/cover no-repeat;
  animation: slowZoom 20s infinite alternate ease-in-out;
  z-index: -2;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes slowZoom {
  0% { 
    transform: scale(1); 
  }
  100% { 
    transform: scale(1.1); 
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32,15,59,0.65) 0%, rgba(22,30,133,0.55) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn-solid {
  background: var(--primary-gold);
  color: var(--primary-deep);
  border: 2px solid var(--primary-gold);
}

.hero-buttons .btn-solid:hover {
  background: #e6b422;
  border-color: #e6b422;
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

.hero-buttons .btn-outline:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== SLIDE ANIMATIONS - OPTIMIZED ===== */
.slide-animate {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.slide-animate.slide-left {
  transform: translateX(-60px);
}

.slide-animate.slide-right {
  transform: translateX(60px);
}

.slide-animate.slide-bottom {
  transform: translateY(60px);
}

.slide-animate.slide-top {
  transform: translateY(-60px);
}

.slide-animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .sticky-header {
    padding: 12px 0;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 24px;
  }
  
  /* Mobile menu link size */
  .mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
  }
  
  .mobile-nav ul {
    gap: 12px;
  }
  
  /* Fix for anchor scrolling on mobile */
  html {
    scroll-padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .btn {
    padding: 12px 24px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .mobile-nav a {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
  
  html {
    scroll-padding-top: 60px;
  }
}

/* ===== ADDITIONAL UTILITIES ===== */
/* Fix for any potential anchor issues */
*:target {
  scroll-margin-top: 80px;
}

/* Smooth performance for all animations */
@media (prefers-reduced-motion: no-preference) {
  .slide-animate,
  .btn,
  .service-card,
  .why-card,
  .testimonial-card {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }
}

/* Ensure header doesn't cause layout shift */
.sticky-header {
  transform: translateZ(0);
}

/* Fix for mobile viewport height issues */
@supports (min-height: 100dvh) {
  .hero {
    min-height: 90dvh;
  }
  
  .mobile-nav {
    height: 100dvh;
  }
}






/* ===== HOOK SECTION - NAVY BLUE WITH GOLD ===== */
.hook-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #0a0a2a 0%, #12123a 50%, #0d0d30 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.hook-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(209, 165, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hook-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 90% 80%, rgba(209, 165, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hook-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Hook Text */
.hook-text {
  flex: 1;
  max-width: 700px;
}

.hook-quote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--primary-gold);
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* Hook Arrow - Clickable */
.hook-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(209, 165, 42, 0.3);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hook-arrow:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
  border-color: var(--primary-gold);
}

.hook-arrow:hover i {
  color: var(--primary-deep);
}

.hook-arrow i {
  font-size: 1.2rem;
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hook-section {
    padding: 35px 0;
  }
  
  .hook-quote {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hook-section {
    padding: 30px 0;
  }
  
  .hook-content {
    gap: 15px;
  }
  
  .hook-quote {
    font-size: 1rem;
  }
  
  .hook-arrow {
    width: 40px;
    height: 40px;
  }
  
  .hook-arrow i {
    font-size: 1rem;
  }
}

@media (max-width: 550px) {
  .hook-section {
    padding: 25px 0;
  }
  
  .hook-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .hook-quote {
    font-size: 0.95rem;
  }
  
  .hook-arrow {
    display: flex;
  }
}



/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-hover);
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
  color: #2c2c3a;
}

/* Button Container */
.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Consultation Button */
.consultation-btn {
  background: var(--primary-gold);
  border: none;
  color: var(--primary-deep);
}

.consultation-btn:hover {
  background: var(--primary-gold-light);
  transform: translateY(-2px);
}

/* Newsletter Button */
.newsletter-btn {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.newsletter-btn i:first-child {
  font-size: 1rem;
}

.newsletter-btn i:last-child {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.newsletter-btn:hover i:last-child {
  transform: translateX(4px);
}

/* Common Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-solid {
  background: var(--primary-gold);
  border: none;
  color: var(--primary-deep);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-deep);
}

.btn-solid:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    justify-content: center;
    width: 100%;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
}

/* Extended styles for the redesigned service section - works with your existing CSS */
.services-section .lead-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #5A5A6A;
  max-width: 800px;
  margin: 1rem auto 0;
}

.services-section .first-name,
.services-section .last-name {
  display: inline-block;
}

.services-section .first-name {
  color: var(--primary-deep, #1a1a2e);
}

.services-section .last-name {
  background: linear-gradient(120deg, var(--primary-gold, #d1a52a) 0%, var(--primary-gold-light, #e8c45a) 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: bottom;
  padding: 0 0.2rem;
  display: inline-block;
}

/* Category Layout */
.service-category {
  margin-bottom: 3.5rem;
  margin-top: 2rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-gold, #d1a52a);
  padding-left: 1.25rem;
}

.category-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold, #d1a52a);
  background: rgba(209, 165, 42, 0.1);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-family: monospace;
}

.category-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary-deep, #1a1a2e);
}

/* Service Items List */
.service-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-list-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-list-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-gold, #d1a52a);
  box-shadow: 0 8px 20px rgba(209, 165, 42, 0.1);
}

.service-list-item i {
  font-size: 1.8rem;
  color: var(--primary-gold, #d1a52a);
  min-width: 50px;
  text-align: center;
  padding-top: 0.2rem;
}

.service-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-deep, #1a1a2e);
}

.service-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5A5A6A;
  margin: 0;
}

/* Coffee Chat CTA */
.coffee-chat-cta {
  background: linear-gradient(135deg, rgba(209, 165, 42, 0.08) 0%, rgba(209, 165, 42, 0.03) 100%);
  border-radius: 28px;
  padding: 2rem 2rem;
  text-align: center;
  margin: 3rem 0 2.5rem;
  border: 1px solid rgba(209, 165, 42, 0.2);
}

.coffee-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-deep, #1a1a2e);
  margin-bottom: 1.25rem;
}

.btn-discovery {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-deep, #1a1a2e);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-discovery i {
  font-size: 1.1rem;
}

.btn-discovery:hover {
  background: var(--primary-gold, #d1a52a);
  color: var(--primary-deep, #1a1a2e);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(209, 165, 42, 0.3);
}

/* Projects Portfolio */
.projects-portfolio {
  margin-top: 3rem;
  padding-top: 1rem;
}

.projects-title {
  text-align: center;
  margin-bottom: 2rem;
}

.projects-title h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-deep, #1a1a2e);
  margin-bottom: 0.5rem;
}

.projects-title p {
  color: #6B6B7A;
  font-size: 0.9rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Remove underline from project thumbnail links */
.project-thumb {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
  display: block;
}

.project-thumb:hover,
.project-thumb:focus,
.project-thumb:active,
.project-thumb:visited {
  text-decoration: none !important;
}

.project-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-gold, #d1a52a);
}

.project-thumb .project-caption {
  text-decoration: none !important;
}

/* Ensure all anchor tags inside projects-portfolio have no underline */
.projects-portfolio a,
.projects-portfolio a:hover,
.projects-portfolio a:focus,
.projects-portfolio a:active,
.projects-portfolio a:visited {
  text-decoration: none !important;
}

.project-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-thumb:hover .project-img-wrapper img {
  transform: scale(1.05);
}

.project-caption {
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary-deep, #1a1a2e);
  background: white;
  border-top: 1px solid rgba(209, 165, 42, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-header h3 {
    font-size: 1.3rem;
  }
  
  .category-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .service-list-item {
    padding: 1rem;
  }
  
  .service-list-item i {
    font-size: 1.4rem;
    min-width: 40px;
  }
  
  .service-text h4 {
    font-size: 1rem;
  }
  
  .service-text p {
    font-size: 0.85rem;
  }
  
  .coffee-message {
    font-size: 1.1rem;
  }
  
  .btn-discovery {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .project-img-wrapper {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .category-header {
    flex-wrap: wrap;
  }
  
  .service-list-item {
    flex-direction: column;
    text-align: center;
  }
  
  .service-list-item i {
    margin-bottom: 0.5rem;
  }
  
  .coffee-chat-cta {
    padding: 1.5rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
}




/* ===== NUMBERS SECTION - NAVY BLUE WITH GOLD TEXT ===== */
.numbers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a2a 0%, #12123a 50%, #0d0d30 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Ensure no other background overrides */
.numbers-section,
.numbers-section * {
  background-blend-mode: normal;
}

/* Background decoration with gold accents */
.numbers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(209, 165, 42, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.numbers-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 80% 80%, rgba(209, 165, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Section Header - Gold Text */
.numbers-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-badge.light-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold) !important;
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(209, 165, 42, 0.12);
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid rgba(209, 165, 42, 0.2);
}

.first-name-light {
  color: #FFF !important;
  font-weight: 700;
}

.last-name-light {
  color: var(--primary-gold) !important;
  font-weight: 700;
}

.light-text {
  color: var(--primary-gold) !important;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Numbers Grid */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Number Items */
.number-item {
  padding: 30px 20px;
  background: rgba(10, 10, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  border: 1px solid rgba(209, 165, 42, 0.25);
  transition: all 0.4s ease;
}

.number-item:hover {
  transform: translateY(-8px);
  background: rgba(20, 20, 60, 0.8);
  border-color: rgba(209, 165, 42, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.number-item .number-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-gold) !important;
  margin-bottom: 10px;
  font-family: 'Inter', monospace;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* Add plus sign after number values */
.number-item:first-child .number-value::after,
.number-item:nth-child(2) .number-value::after {
  content: '+';
  font-size: 2.5rem;
  color: var(--primary-gold) !important;
  margin-left: 5px;
  font-weight: 600;
}

.number-item:nth-child(3) .number-value::after,
.number-item:nth-child(4) .number-value::after {
  content: '%';
  font-size: 2rem;
  color: var(--primary-gold) !important;
  margin-left: 5px;
  font-weight: 600;
}

.number-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(209, 165, 42, 0.85) !important;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Hover effect */
.number-item:hover .number-value {
  text-shadow: 0 0 20px rgba(209, 165, 42, 0.5);
  color: #FFD700 !important;
}

.number-item:hover p {
  color: var(--primary-gold) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .numbers-section {
    padding: 80px 0;
  }
  
  .numbers-grid {
    gap: 30px;
  }
  
  .number-item .number-value {
    font-size: 3.5rem;
  }
  
  .number-item p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .numbers-section {
    padding: 60px 0;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .number-item {
    padding: 25px 15px;
  }
  
  .number-item .number-value {
    font-size: 2.5rem;
  }
  
  .number-item .number-value::after {
    font-size: 1.3rem !important;
  }
  
  .number-item p {
    font-size: 0.85rem;
  }
  
  .first-name-light,
  .last-name-light {
    font-size: 1.8rem;
  }
  
  .light-text {
    font-size: 0.9rem;
  }
  
  .section-badge.light-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 550px) {
  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .number-item {
    padding: 20px 15px;
  }
  
  .number-item .number-value {
    font-size: 3rem;
  }
  
  .number-item p {
    font-size: 0.95rem;
  }
}

/* Counter animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.number-value {
  animation: countUp 0.6s ease forwards;
}

/* Remove any conflicting backgrounds */
.numbers-section .container {
  position: relative;
  z-index: 1;
}










/* ===== WHY CHOOSE GRACE ===== */
.why-section {
  padding: 100px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
}

.why-card {
  background: var(--light-gray);
  padding: 40px 28px;
  border-radius: 28px;
  text-align: center;
  transition: 0.25s;
}

.why-card i {
  font-size: 2.6rem;
  color: var(--primary-gold);
  margin-bottom: 24px;
}

.why-card h3 {
  margin-bottom: 15px;
  color: var(--primary-deep);
}

.why-card:hover {
  transform: scale(1.02);
  background: white;
  box-shadow: var(--shadow-hover);
}





/* Education Section */
.education-section {
  padding: 100px 0;
  background: white;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.education-card {
  background: var(--light-gray);
  padding: 35px 30px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.1);
}

.education-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: var(--shadow-hover);
  border-color: rgba(209, 165, 42, 0.2);
}

.education-card i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.education-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-deep);
}

.education-card .institution {
  font-size: 0.95rem;
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 5px;
}

.education-card .year {
  font-size: 0.85rem;
  color: #8A8A9A;
}




/* Slider Section */
.wambuigathua-slider-section {
  width: 100%;
  overflow: hidden;
  background: #000;
  position: relative;
}

/* Image Slider Styling */
.about-photo-slider {
    position: relative;
    width: 100%; /* Full viewport width */
    height: 600px; /* Increased height */
    overflow: hidden;
    border-radius: 0; /* Optional: full-width feel */
    margin: 0 auto;
    background-color: #000000;
}

.about-photo-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-photo-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the container and crop if needed */
    transition: transform 0.3s ease;
    border-radius: 0;
}

/* Hover effect for the images */
.about-photo-slider .slide img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-photo-slider {
        height: 400px; /* Adjusted height for mobile */
    }
}





/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.portfolio-card {
  background: white;
  padding: 35px 30px;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.1);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(209, 165, 42, 0.2);
}

.portfolio-icon i {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.portfolio-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-deep);
}

.portfolio-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5A5A6A;
  margin-bottom: 20px;
}

.portfolio-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid rgba(209, 165, 42, 0.15);
}

.portfolio-stats span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  background: rgba(209, 165, 42, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-card {
    padding: 25px 20px;
  }
}




/* Tools Section - Navy Blue with Gold */
.tools-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a2a 0%, #12123a 50%, #0d0d30 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(209, 165, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.tools-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 80% 80%, rgba(209, 165, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header - Gold Text */
.tools-section .section-header h2 .first-name,
.tools-section .section-header h2 .last-name {
  color: var(--primary-gold);
}

.tools-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.tools-section .section-badge {
  background: rgba(209, 165, 42, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(209, 165, 42, 0.2);
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Tools Category Cards */
.tools-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(209, 165, 42, 0.25);
  transition: all 0.3s ease;
}

.tools-category:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(209, 165, 42, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Category Headers - Gold */
.tools-category h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tools-category h3 i {
  color: var(--primary-gold);
  font-size: 1.3rem;
}

/* Tools List - Gold themed */
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tools-list span {
  background: rgba(209, 165, 42, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(209, 165, 42, 0.15);
}

.tools-list span:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-2px);
  border-color: var(--primary-gold);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .tools-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .tools-section {
    padding: 60px 0;
  }
  
  .tools-grid {
    gap: 20px;
  }
  
  .tools-category {
    padding: 25px;
  }
  
  .tools-category h3 {
    font-size: 1.1rem;
  }
  
  .tools-list span {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .tools-section {
    padding: 50px 0;
  }
  
  .tools-category {
    padding: 20px;
  }
  
  .tools-category h3 {
    font-size: 1rem;
  }
}









/* Clients Section - Navy Blue with Gold */
.clients-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a2a 0%, #12123a 50%, #0d0d30 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(209, 165, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 80% 80%, rgba(209, 165, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header - Gold Text */
.clients-section .section-header h2 .first-name,
.clients-section .section-header h2 .last-name {
  color: var(--primary-gold);
}

.clients-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.clients-section .section-badge {
  background: rgba(209, 165, 42, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(209, 165, 42, 0.2);
}

/* Clients Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* Client Items - Glassmorphism Style */
.client-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  text-align: center;
  border-radius: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.2);
  font-size: 1rem;
  cursor: default;
}

.client-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  background: rgba(209, 165, 42, 0.1);
  color: var(--primary-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .clients-section {
    padding: 80px 0;
  }
  
  .clients-grid {
    gap: 20px;
  }
  
  .client-item {
    padding: 20px 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;
  }
  
  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .client-item {
    padding: 18px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 50px 0;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .client-item {
    padding: 15px 10px;
    font-size: 0.8rem;
  }
}



/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card i {
  font-size: 2rem;
  color: var(--primary-gold-light);
  opacity: 0.7;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #2b2b38;
}

.testimonial-card h4 {
  color: var(--secondary-blue);
  font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-details {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details div i {
  width: 32px;
  color: var(--primary-gold);
  margin-right: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid #E2E4EC;
  border-radius: 60px;
  font-family: inherit;
  background: #FCFAF5;
  transition: 0.2s;
}

.contact-form textarea {
  border-radius: 28px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(209,165,42,0.2);
}



/* ===== CONTACT FORM STYLES ===== */
.contact-form-container {
  position: relative;
}

.form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(32, 15, 59, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.form-wrapper:hover {
  box-shadow: var(--shadow-hover);
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.form-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-deep);
}

.label-text {
  font-size: 0.9rem;
}

.required {
  color: var(--primary-gold);
  font-weight: bold;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: #FCFAF5;
  border: 1px solid #E2E4EC;
  border-radius: 12px;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(209, 165, 42, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footer {
  margin-top: 30px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 28px;
  background: var(--primary-deep);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 15px;
}

.submit-button:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
  gap: 16px;
}

.submit-button svg {
  transition: transform 0.3s ease;
}

.submit-button:hover svg {
  transform: translateX(5px) rotate(15deg);
}

.form-note {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin: 0;
}

.form-note a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Spinner and Alert Styles */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  animation: slideDown 0.3s ease-out;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-left: 4px solid #28a745;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-left: 4px solid #dc3545;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 25px;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
}





/* ===== FOOTER - NAVY BLUE WITH GOLD ===== */
.footer {
  background: linear-gradient(135deg, #0a0a2a 0%, #0d0d30 50%, #0a0a2a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
  position: relative;
  border-top: 1px solid rgba(209, 165, 42, 0.15);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Footer About Section */
.footer-about h3 {
  color: var(--primary-gold);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Footer Links */
.footer-links h4 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
  display: inline-block;
}

/* Footer Social Section */
.footer-social h4 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.2);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  border-color: var(--primary-gold);
}

/* Copyright Section */
.copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(209, 165, 42, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer {
    padding-top: 50px;
  }
  
  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .footer-links a:hover {
    transform: translateX(0);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-about h3 {
    font-size: 1.2rem;
  }
  
  .footer-links h4,
  .footer-social h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 30px;
  }
  
  .footer-grid {
    gap: 25px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
  }
  
  .copyright {
    font-size: 0.75rem;
    padding: 20px 0;
  }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

/* ===== SLIDE ANIMATIONS ===== */
.slide-animate {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform, opacity;
}

.slide-animate.slide-left {
  transform: translateX(-60px);
}

.slide-animate.slide-right {
  transform: translateX(60px);
}

.slide-animate.slide-bottom {
  transform: translateY(60px);
}

.slide-animate.slide-top {
  transform: translateY(-60px);
}

.slide-animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
  .about-grid, .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-container {
    padding: 8px 20px;
  }
  
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .numbers-grid {
    gap: 30px;
  }
  
  .number-item .number-value {
    font-size: 2.8rem;
  }
  
  .footer-grid {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    display: flex;
  }
  
  .container {
    padding: 0 24px;
  }
  
  /* Mobile menu link size - reduced to normal menu text size */
  .mobile-nav a {
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
  }
  
  .mobile-nav ul {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .btn {
    padding: 12px 24px;
  }
  
  .service-detail {
    font-size: 0.85rem;
  }
  
  .mobile-nav a {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

/* ===== HERO SECTION (zoom bg - NO OVERFLOW) ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

/* Create a pseudo-element for the zooming background */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('../images/hero1.jpg') center center/cover no-repeat;
  animation: slowZoom 20s infinite alternate ease-in-out;
  z-index: -2;
  transform-origin: center center;
}

@keyframes slowZoom {
  0% { 
    transform: scale(1); 
  }
  100% { 
    transform: scale(1.1); 
  }
}

/* Lighter overlay - reduced opacity and softer gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(32,15,59,0.65) 0%, rgba(22,30,133,0.55) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Remove underline from the highlight text */
.highlight-text {
  text-decoration: none;
  border-bottom: none;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero button overrides - Gold Solid and Gold Outline */
.hero-buttons .btn-solid {
  background: var(--primary-gold);
  color: var(--primary-deep);
  border: 2px solid var(--primary-gold);
  transition: all 0.3s ease;
}

.hero-buttons .btn-solid:hover {
  background: #F5C542;
  border-color: #F5C542;
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Ensure button styles have high specificity and aren't overridden */
.hero-buttons a.btn-solid,
.hero-buttons button.btn-solid {
  background: var(--primary-gold);
  color: var(--primary-deep);
}

.hero-buttons a.btn-solid:hover,
.hero-buttons button.btn-solid:hover {
  background: #e6b422;
  border-color: #e6b422;
  color: var(--primary-deep);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}

/* ===== ABOUT SECTION - MODERN & PROFESSIONAL ===== */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #FEFCF5 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(209,165,42,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Image Wrapper & Styling */
.about-img-wrapper {
  position: relative;
}

.about-img {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  padding: 15px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: pulse 2s infinite;
}

.about-img-badge span {
  display: block;
  color: var(--primary-gold);
  font-weight: 700;
}

.about-img-badge span:first-child {
  font-size: 1.8rem;
  letter-spacing: 1px;
}

.about-img-badge span:last-child {
  font-size: 0.85rem;
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* About Text Styling */
.about-text {
  position: relative;
}

.about-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(209,165,42,0.1);
  padding: 5px 15px;
  border-radius: 30px;
}

.about-text h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a5a;
  margin-bottom: 30px;
  border-left: 3px solid var(--primary-gold);
  padding-left: 20px;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: var(--shadow-sm);
}

.about-feature i {
  font-size: 1.8rem;
  color: var(--primary-gold);
  min-width: 45px;
}

.about-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 5px;
}

.about-feature p {
  font-size: 0.9rem;
  color: #6b6b7a;
  margin: 0;
}

/* Personal Touch */
.about-personal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(209,165,42,0.05) 0%, rgba(32,15,59,0.05) 100%);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  border-left: 3px solid var(--primary-gold);
}

.about-personal i {
  font-size: 1.5rem;
  color: var(--primary-gold);
  min-width: 35px;
}

.about-personal p {
  font-size: 0.95rem;
  color: #5a5a6a;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Consultation Button - Gold Theme */
.consultation-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #D1A52A 0%, #F5C542 50%, #FFD700 100%);
  border: none;
  color: #200F3B;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(209,165,42,0.35);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shine effect on button */
.consultation-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.consultation-btn:hover::before {
  left: 100%;
}

.consultation-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(209,165,42,0.5);
  gap: 15px;
  background: linear-gradient(135deg, #E6B422 0%, #FFD700 50%, #FFE44D 100%);
}

.consultation-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  color: #200F3B;
}

.consultation-btn:hover i {
  transform: translateX(6px);
}

/* Active/Click effect */
.consultation-btn:active {
  transform: translateY(0px);
  box-shadow: 0 5px 15px rgba(209,165,42,0.3);
}

/* Optional: Add a subtle border glow */
.consultation-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #D1A52A, #FFD700, #D1A52A);
  border-radius: 52px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.consultation-btn:hover::after {
  opacity: 1;
}

/* Dark text variant for better contrast */
.consultation-btn span {
  position: relative;
  z-index: 2;
  color: #200F3B;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
  }
  
  .about-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-feature {
    padding: 12px;
  }
  
  .about-feature i {
    font-size: 1.5rem;
  }
  
  .about-img-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
  }
  
  .about-img-badge span:first-child {
    font-size: 1.3rem;
  }
  
  .about-intro {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
  }
  
  .about-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-feature i {
    margin-bottom: 10px;
  }
  
  .about-personal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.service-card {
  background: white;
  padding: 36px 28px;
  border-radius: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-deep);
}

.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.service-detail {
  background: white;
  padding: 12px 24px;
  border-radius: 60px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border-left: 4px solid var(--primary-gold);
}

/* ===== NUMBERS SECTION ===== */
.numbers-section {
  padding: 90px 0;
  background: linear-gradient(120deg, #FEF9E6 0%, #FFFFFF 100%);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.number-item .number-value {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--secondary-blue);
  margin-bottom: 8px;
  font-family: monospace;
}

.number-item p {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-deep);
}

/* ===== WHY CHOOSE GRACE ===== */
.why-section {
  padding: 100px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
}

.why-card {
  background: var(--light-gray);
  padding: 40px 28px;
  border-radius: 28px;
  text-align: center;
  transition: 0.25s;
}

.why-card i {
  font-size: 2.6rem;
  color: var(--primary-gold);
  margin-bottom: 24px;
}

.why-card h3 {
  margin-bottom: 15px;
  color: var(--primary-deep);
}

.why-card:hover {
  transform: scale(1.02);
  background: white;
  box-shadow: var(--shadow-hover);
}




/* ===== BLOG SECTION - MODERN & PROFESSIONAL ===== */
.blog-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(209, 165, 42, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(209, 165, 42, 0.1);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(209, 165, 42, 0.2);
}

/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--primary-deep);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Blog Content */
.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #8A8A9A;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-gold);
  font-size: 0.75rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-deep);
  font-weight: 700;
  line-height: 1.4;
}

.blog-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5A5A6A;
  margin-bottom: 20px;
}

/* Read More Link */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-more i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  gap: 12px;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Blog Footer */
.blog-footer {
  text-align: center;
  margin-top: 20px;
}

.blog-footer .btn-outline {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 12px 32px;
}

.blog-footer .btn-outline:hover {
  background: var(--primary-gold);
  color: var(--primary-deep);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-section {
    padding: 80px 0;
  }
  
  .blog-grid {
    gap: 25px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .blog-image {
    height: 200px;
  }
  
  .blog-content h3 {
    font-size: 1.1rem;
  }
  
  .section-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .blog-content {
    padding: 18px;
  }
  
  .blog-meta {
    font-size: 0.7rem;
    gap: 10px;
  }
  
  .blog-content h3 {
    font-size: 1rem;
  }
  
  .blog-content p {
    font-size: 0.85rem;
  }
}









/* ===== GALLERY SECTION - NAVY BLUE THEME ===== */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a2a 0%, #12123a 50%, #0d0d30 100%);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(209, 165, 42, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at 80% 80%, rgba(209, 165, 42, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header - Gold Text */
.gallery-section .section-header h2 .first-name,
.gallery-section .section-header h2 .last-name {
  color: var(--primary-gold);
}

.gallery-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.gallery-section .section-badge {
  background: rgba(209, 165, 42, 0.15);
  color: var(--primary-gold);
  border: 1px solid rgba(209, 165, 42, 0.2);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* Gallery Item - Staggered Animation */
.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Image Container - No Cropping */
.gallery-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(209, 165, 42, 0.2);
  transition: all 0.3s ease;
}

/* Remove fixed aspect ratio to prevent cropping */
.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-image:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 165, 42, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image:hover img {
  transform: scale(1.03);
}

/* Remove overlay completely */
.gallery-overlay {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-section {
    padding: 80px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 50px 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}






/* ===== TESTIMONIALS SECTION - MODERN & PROFESSIONAL ===== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8F9FC 0%, #FFFFFF 100%);
  position: relative;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(209, 165, 42, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 35px 30px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(209, 165, 42, 0.1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(209, 165, 42, 0.2);
}

/* Quote Icon */
.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote i {
  font-size: 2rem;
  color: var(--primary-gold);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote i {
  opacity: 1;
  transform: scale(1.05);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4A5A;
  margin-bottom: 25px;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  border-top: 1px solid rgba(209, 165, 42, 0.15);
  padding-top: 20px;
  margin-top: 5px;
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonial-grid {
    gap: 25px;
  }
  
  .testimonial-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .section-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  
  .testimonial-author h4 {
    font-size: 0.95rem;
  }
  
  .testimonial-author span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 50px 0;
  }
  
  .testimonial-card {
    padding: 20px 18px;
  }
  
  .testimonial-quote i {
    font-size: 1.6rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-details {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details div i {
  width: 32px;
  color: var(--primary-gold);
  margin-right: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid #E2E4EC;
  border-radius: 60px;
  font-family: inherit;
  background: #FCFAF5;
  transition: 0.2s;
}

.contact-form textarea {
  border-radius: 28px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(209,165,42,0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-deep);
  color: #ddd;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-about h3 {
  color: white;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-icons a {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  margin-right: 12px;
  color: white;
  transition: 0.2s;
}

.social-icons a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

/* ===== SLIDE ANIMATIONS (triggered by scroll) ===== */
.slide-animate {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform, opacity;
}

.slide-animate.slide-left {
  transform: translateX(-60px);
}

.slide-animate.slide-right {
  transform: translateX(60px);
}

.slide-animate.slide-bottom {
  transform: translateY(60px);
}

.slide-animate.slide-top {
  transform: translateY(-60px);
}

.slide-animate.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE (MOBILE MENU + ADAPTIVE) ===== */
@media (max-width: 992px) {
  .about-grid, .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-container {
    padding: 8px 20px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    gap: 30px;
  }
  .number-item .number-value {
    font-size: 2.8rem;
  }
  .footer-grid {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    display: flex;
  }
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .btn {
    padding: 12px 24px;
  }
  .service-detail {
    font-size: 0.85rem;
  }
}


/* Add to your existing RESET & BASE section */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure all sections don't cause overflow */
section {
  overflow-x: hidden;
  width: 100%;
}

