body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Remove Google Fonts import - now loaded in HTML with preconnect */

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

:root {
  /* Color Palette - Light Mode */
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-light: #6366f1;
  --secondary: #ec4899;
  --accent: #f59e0b;
  --dark: #0f172a;
  --dark-lighter: #1e293b;
  --dark-lightest: #334155;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --white: #ffffff;
  
  /* Background & Text */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --border-color: #cbd5e1;
  --card-bg: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
body.dark-mode {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --border-color: #334155;
  --card-bg: #1e293b;
  --light: #1e293b;
  --dark: #f8fafc;
  --gray: #cbd5e1;
  --gray-light: #334155;
  --white: #0f172a;
  
  /* Dark mode shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  color: #0f172a;
  color: var(--text-primary);
  background-color: #f8fafc;
  background-color: var(--bg-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid #cbd5e1;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

body.dark-mode .navbar {
  background: rgba(15, 23, 42, 0.75);
  border-bottom: 1px solid #cbd5e1;
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
  color: #0f172a;
  color: var(--text-primary);
  text-decoration: none;
}

.logo img {
  width: 70px;
  height: 70px;
  border-radius: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #0f172a;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.nav-link:hover {
  color: #4f46e5;
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.nav-link.contact-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.nav-link.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.nav-link.contact-btn::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #0f172a;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
  }
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.dark-mode-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.dark-mode-toggle svg {
  width: 28px;
  height: 28px;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.dark-mode-toggle .sun-icon {
  display: none;
}

.dark-mode-toggle .moon-icon {
  display: block;
}

body.dark-mode .dark-mode-toggle .sun-icon {
  display: block;
}

body.dark-mode .dark-mode-toggle .moon-icon {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  background: var(--gradient-secondary);
  bottom: -100px;
  left: -150px;
  animation-delay: 7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  background: var(--gradient-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  grid-gap: 4rem;
  grid-gap: var(--spacing-lg);
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  color: var(--primary);
  border-radius: 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  color: #0f172a;
  color: var(--text-primary);
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: #475569;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  margin-bottom: var(--spacing-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: #ffffff;
  background: var(--card-bg);
  color: #0f172a;
  color: var(--text-primary);
  border: 2px solid #cbd5e1;
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: #4f46e5;
  border-color: var(--primary);
  color: #4f46e5;
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-gap: 2rem;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  color: #475569;
  color: var(--text-secondary);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-card {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border-radius: var(--radius-xl);
  padding: 4rem;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.paint-brush-icon {
  font-size: 8rem;
  animation: brushRotate 10s infinite ease-in-out;
}

@keyframes brushRotate {
  0%,
  100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  color: var(--text-secondary);
  font-size: 0.875rem;
  z-index: 1;
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid #475569;
  border: 2px solid var(--text-secondary);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #475569;
  background: var(--text-secondary);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
  padding: var(--spacing-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  margin-bottom: var(--spacing-lg);
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  color: var(--primary);
  border-radius: 2rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
  color: #0f172a;
  color: var(--text-primary);
}

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

/* Services Section */
.services {
  background: #ffffff;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  grid-gap: 2rem;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);
}

.service-card {
  background: #ffffff;
  background: var(--card-bg);
  border-radius: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 2rem;
  padding: var(--spacing-md);
  border: 2px solid #cbd5e1;
  border: 2px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  border-color: #6366f1;
  border-color: var(--primary-light);
}

.service-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  color: white;
  border: none;
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features,
.service-card.featured .service-features li,
.service-card.featured .service-link {
  color: white;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.375rem 0.875rem;
  border-radius: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
}

.service-description {
  color: #475569;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #475569;
  color: var(--text-secondary);
}

.service-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4f46e5;
  color: var(--primary);
  font-weight: 700;
}

.service-card.featured .service-features li::before {
  color: white;
}

.service-link {
  color: #4f46e5;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.service-link:hover {
  gap: 0.5rem;
}

/* Gallery Section */
.gallery {
  background: #f8fafc;
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  grid-gap: 2rem;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  border-radius: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
}

.enlarge-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(79, 70, 229, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.enlarge-btn svg {
  color: #4f46e5;
  color: var(--primary);
}

.gallery-item:hover .enlarge-btn {
  opacity: 1;
  transform: scale(1);
}

.enlarge-btn:hover {
  background: #4f46e5;
  background: var(--primary);
  border-color: #4f46e5;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-lg);
}

.enlarge-btn:hover svg {
  color: white;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
}

.placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem;
  padding: var(--spacing-md);
  color: white;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* About Section */
.about {
  background: #ffffff;
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  grid-gap: 4rem;
  grid-gap: var(--spacing-lg);
  gap: var(--spacing-lg);
  align-items: center;
}

.about-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  border-radius: 2rem;
  border-radius: var(--radius-xl);
  padding: 4rem;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.badge-icon {
  font-size: 4rem;
}

.quality-badge strong {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.25rem;
}

.quality-badge p {
  font-size: 0.875rem;
  opacity: 0.9;
}

.about-text {
  text-align: left;
}

.about-description {
  font-size: 1.125rem;
  color: #475569;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  gap: var(--spacing-md);
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.about-feature p {
  color: #475569;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  background: #f8fafc;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  grid-gap: 2rem;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);
}

.testimonial-card {
  background: #ffffff;
  background: var(--card-bg);
  border-radius: 1.5rem;
  border-radius: var(--radius-lg);
  padding: 2rem;
  padding: var(--spacing-md);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  border-color: #6366f1;
  border-color: var(--primary-light);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-text {
  color: #0f172a;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-author h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: #475569;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: #f8fafc;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 30px;
  gap: 30px;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: #ffffff;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid #cbd5e1;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
}

.contact-card:hover {
  background: #ffffff;
  background: var(--bg-primary);
  border-color: #6366f1;
  border-color: var(--primary-light);
  box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2);
  transform: translateY(-5px);
}

.contact-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-card h3 {
  color: #0f172a;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.contact-card-info {
  color: #4f46e5;
  color: var(--primary);
  font-weight: 600;
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-card-subtitle {
  color: #475569;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 5px 0 0 0;
}

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

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  min-width: 250px;
  justify-content: center;
}

.btn-large span {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Image Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  margin: auto;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modalZoomIn 0.3s ease-out;
}

@keyframes modalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: -35px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-info {
  margin-top: 2rem;
  margin-top: var(--spacing-md);
  text-align: center;
  color: white;
  max-width: 600px;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-description {
  font-size: 1rem;
  opacity: 0.9;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  padding: 0;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: -80px;
}

.modal-next {
  right: -80px;
}

/* Footer */
.footer {
  background: #1e293b;
  background: var(--dark-lighter);
  color: white;
  padding: 4rem 0 2rem;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

body.dark-mode .footer {
  background: #0a0f1a;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  grid-gap: 4rem;
  grid-gap: var(--spacing-lg);
  gap: var(--spacing-lg);
  margin-bottom: 4rem;
  margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: #cbd5e1;
  color: var(--gray-light);
  margin-bottom: 2rem;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

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

.social-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #334155;
  border: 1px solid var(--dark-lightest);
  border-radius: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

.social-link:hover {
  background: #4f46e5;
  background: var(--primary);
  border-color: #4f46e5;
  border-color: var(--primary);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  grid-gap: 2rem;
  grid-gap: var(--spacing-md);
  gap: var(--spacing-md);
}

.footer-column h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: #cbd5e1;
  color: var(--gray-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  border-top: 1px solid var(--dark-lightest);
  padding-top: 2rem;
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #cbd5e1;
  color: var(--gray-light);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: #cbd5e1;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    gap: var(--spacing-md);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 90px);
    background: #ffffff;
    background: var(--bg-primary);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    box-shadow: var(--shadow-xl);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    gap: 0.5rem;
    border-right: 1px solid #cbd5e1;
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    border-radius: var(--radius-sm);
    background: #ffffff;
    background: var(--card-bg);
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-color);
    text-align: left;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0;
  }

  .nav-link:hover {
    background: #f8fafc;
    background: var(--bg-secondary);
    border-color: #4f46e5;
    border-color: var(--primary);
    transform: translateX(5px);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.contact-btn {
    margin-top: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 600;
    text-align: center;
  }

  .nav-link.contact-btn:hover {
    transform: translateX(0) scale(1.02);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-lg);
  }

  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    transition: all 0.3s ease;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 4rem 0;
    padding: 140px 0 var(--spacing-lg) 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid,
  .gallery-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .modal-content {
    max-width: 95vw;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .modal-info {
    padding: 0 1rem;
  }

  .dark-mode-toggle {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }

  .dark-mode-toggle svg {
    width: 24px;
    height: 24px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .scroll-indicator,
  .contact-form-wrapper,
  .footer {
    display: none;
  }

  body {
    background: white;
  }
}

/* Loading Spinner for Lazy Loading */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  font-family: "Inter", sans-serif;
  font-family: var(--font-body);
  color: #475569;
  color: var(--text-secondary);
  font-size: 1rem;
}

.loading-spinner::after {
  content: '';
  width: 40px;
  height: 40px;
  margin-left: 1rem;
  border: 3px solid #cbd5e1;
  border: 3px solid var(--gray-light);
  border-top-color: #4f46e5;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


