:root {
  --primary-color: #d2ac67;
  --primary-dark: #b48d49;
  --primary-light: #e9c887;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --accent-color: #231f20;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
}

* {
  outline: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
}

/* Custom Bootstrap utilities */
.min-vh-75 {
  min-height: 75vh;
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.brand-link {
  text-decoration: none;
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: var(--primary-dark) !important;
  transform: scale(1.02);
}

.brand-suffix {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 400;
}

.navbar-nav .nav-link {
  color: var(--gray-700) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Dropdown styling */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 0.75rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  color: var(--gray-700);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white) !important;
  transform: translateX(5px);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color)10, transparent);
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* Section titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-image-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color)90, var(--primary-dark)90);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 1.5rem;
  position: relative;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary-color);
}

.service-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.service-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.service-arrow i {
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow i {
  transform: translateX(3px);
}

/* Footer */
footer {
  background: var(--gray-50) !important;
  border-top: 1px solid var(--gray-200);
}

footer h5, footer h6 {
  font-weight: 600;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-image-container {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Utility classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

/* Smooth scroll offset for fixed navbar */
html {
  scroll-padding-top: 80px;
}

/* Professional Homepage Styles */
:root {
  --primary-color: #d2ac67;
  --primary-dark: #b48d49;
  --primary-light: #e9c887;
  --secondary-color: #64748b;
  --accent-color: #231f20;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  --text-color: #334155;
  --white: #ffffff;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
}

/* Professional Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  padding: 60px 0;
}

.hero-badge .badge {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: var(--primary-color) !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
  margin: 1.5rem 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero-actions .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-actions .btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
}

.hero-actions .btn-outline-secondary {
  color: var(--secondary-color);
  border-color: var(--border-color);
}

.hero-actions .btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.professional-image {
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
}

/* Professional Services Section */
.services-section {
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

/* Professional Service Cards */
.professional-service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.professional-service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.professional-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.professional-service-card:hover .professional-service-image img {
  transform: scale(1.05);
}

.professional-service-content {
  padding: 1.5rem;
}

.service-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon-wrapper i {
  color: var(--white);
  font-size: 1.25rem;
}

.professional-service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.professional-service-description {
  font-size: 0.875rem;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.professional-service-action {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.professional-service-card:hover .professional-service-action {
  color: var(--primary-dark);
}

.professional-service-action i {
  transition: transform 0.3s ease;
}

.professional-service-card:hover .professional-service-action i {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .professional-service-image {
    height: 160px;
  }
  
  .professional-service-content {
    padding: 1rem;
  }
} 