/* Enhanced Dark Theme CSS for Artistic Home Designs - Full Website Dark Mode */
:root {
  /* Dark Theme Colors */
  --primary-dark: #111010;         /* Deep black for main background */
  --secondary-dark: #1a1816;       /* Slightly lighter black for sections */
  --accent-dark: #2d2118;          /* Rich brown for cabinetry feel */
  --surface-dark: #181716;         /* For overlays/cards */
  --card-dark: #221a13;            /* For card backgrounds */

  /* Gold Accents (from image) */
  --gold-primary: #ffe156;         /* Vibrant gold/yellow for headings/buttons */
  --gold-secondary: #ffd23f;       /* Slightly lighter gold */
  --gold-light: #fff3b0;           /* For highlights */
  --gold-dark: #e1b900;            /* Deep gold for borders/shadows */

  /* Text Colors */
  --text-primary: #fffbe8;         /* Off-white for main text */
  --text-secondary: #e6e1c5;       /* Muted gold/white for secondary text */
  --text-muted: #b0a98f;           /* Muted for less important text */
  --text-accent: #ffe156;          /* Gold accent for headings */

  /* Background Colors */
  --bg-primary: #111010;
  --bg-secondary: #1a1816;
  --bg-surface: #181716;
  --bg-card: rgba(34, 26, 19, 0.85); /* Glassy brown-black for cards */
  --bg-overlay: rgba(17, 16, 16, 0.98);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ffe156 0%, #ffd23f 100%);
  --gradient-dark: linear-gradient(135deg, #181716 0%, #221a13 100%);
  --gradient-surface: linear-gradient(135deg, #181716 0%, #221a13 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(17, 16, 16, 0.95) 0%,
    rgba(34, 26, 19, 0.85) 100%
  );

  /* Shadows */
  --shadow-dark: 0 4px 24px rgba(0,0,0,0.7);
  --shadow-medium: 0 8px 32px rgba(0,0,0,0.8);
  --shadow-strong: 0 12px 48px rgba(0,0,0,0.9);
  --shadow-gold: 0 6px 25px rgba(255, 225, 86, 0.15);

  /* Borders */
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(255, 225, 86, 0.25);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/* overflow:hidden ; */
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  overflow-x: hidden;
  background: var(--bg-primary);
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Typography for Dark Theme */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gold-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(255, 225, 86, 0.08), 0 1px 0 #000;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--gold-primary);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--gold-secondary);
}

p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

#home{
    background-color: var(--primary-dark);
}

/* Enhanced Buttons for Dark Theme */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  box-shadow: var(--shadow-dark);
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #181716;
  box-shadow: var(--shadow-gold);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 225, 86, 0.25);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: #181716;
}

/* Enhanced Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  color: var(--text-primary);
  position: relative;
}

.loader-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: pulse 2s infinite, float 3s ease-in-out infinite;
  border-radius: 12px;
  padding: 15px;
  background: rgba(212, 165, 116, 0.1);
  backdrop-filter: blur(10px);
}

.loader-text h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 15px;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loader-text p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 300;
  color: var(--text-secondary);
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(212, 165, 116, 0.2);
  border-top: 4px solid var(--gold-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* Enhanced Navigation for Dark Theme */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-overlay);
  backdrop-filter: blur(24px);
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: var(--shadow-dark);
}

.navbar.scrolled {
  background: rgba(17, 16, 16, 0.98);
  box-shadow: var(--shadow-medium);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  width: 42px;
  height: auto;
  border-radius: 8px;
  padding: 3px;
  background: var(--gradient-primary);
}

.nav-logo span {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 12px;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.cta-link {
  background: var(--gradient-primary) !important;
  color: #181716 !important;
  padding: 12px 20px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 225, 86, 0.25);
  filter: brightness(1.1);
}

.cta-link::after {
  display: none;
}

/* Enhanced Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(212, 165, 116, 0.1);
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  margin: 4px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Hero Section - Enhanced Dark Theme */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-dark);
  padding: 80px 0 40px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 160px);
  text-align: center;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-text .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-text p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  line-height: 1.6;
  color: var(--text-secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(212, 165, 116, 0.15);
  box-shadow: var(--shadow-gold);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Section - Dark Theme */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,165,116,0.05)"/></svg>');
  background-size: 40px 40px;
  opacity: 0.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  background: var(--bg-surface);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 500;
  padding: 6px 0;
}

.service-features i {
  color: var(--gold-primary);
  font-size: 1rem;
}

.service-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border-radius: 20px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  justify-content: center;
}

/* About Section - Dark Theme */
.about {
  padding: 100px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  overflow: hidden;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.about-text > p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-dark);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Portfolio Section - Dark Theme */
.portfolio {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--gold-primary);
  background: transparent;
  color: var(--text-primary);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.portfolio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 165, 116, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .zoom-icon {
  transform: scale(1.1);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.portfolio-info p {
  color: var(--text-secondary);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

/* Process Section - Dark Theme */
.process {
  padding: 100px 0;
  background: var(--bg-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Contact Section - Dark Theme */
.contact {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-info > p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.contact-item .contact-content h4 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-item .contact-content p {
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.contact-cta {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(10px);
}

.contact-cta h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-cta p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Footer - Dark Theme */
.footer {
  background: var(--primary-dark);
  color: var(--text-secondary);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: auto;
  border-radius: 8px;
}

.footer-section p {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-bottom a {
  color: var(--gold-primary);
  text-decoration: none;
}

/* WhatsApp Chat - Enhanced for Dark Theme */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-primary);
  color: #181716;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-dark);
  transition: var(--transition-smooth);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.whatsapp-btn:hover {
  background: var(--gold-secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

/* Back to Top - Dark Theme */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #181716;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

/* Section Headers for Dark Theme */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header h2 {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  color: var(--gold-primary);
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-header p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Lightbox - Dark Theme */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 16, 16, 0.98);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: scale(0.7);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -20px;
  color: var(--text-primary);
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  transform: scale(1.1);
}

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 20px;
  background: var(--bg-card);
  text-align: center;
  backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
  margin: 0 0 10px 0;
  color: var(--text-primary);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
}

.lightbox-caption p {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.3rem;
    padding: 12px 20px;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding: 60px 0 30px;
  }

  .hero-content {
    padding: 0 15px;
    min-height: calc(100vh - 120px);
  }

  .hero-text h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .services,
  .portfolio,
  .about,
  .contact,
  .process {
    padding: 60px 0;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-text h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem 0.8rem;
  }

  .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .service-card,
  .contact-item,
  .process-step {
    padding: 1.5rem;
  }

  .contact-cta {
    padding: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: clamp(1.3rem, 4.5vw, 2rem);
  }

  .hero-buttons .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

/* Scroll Indicator Enhancement */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-secondary);
}

.scroll-indicator {
  text-align: center;
  cursor: pointer;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  opacity: 0.8;
}

.scroll-arrow {
  width: 2px;
  height: 25px;
  background: var(--gold-light);
  margin: 0 auto;
  position: relative;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .whatsapp-btn,
  .lightbox {
    display: none !important;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
  }

  * {
    box-shadow: none !important;
    background: white !important;
    color: black !important;
  }
}

/* Glassmorphism Blur for Card Elements */
.service-card,
.feature-item,
.portfolio-item,
.process-step,
.contact-item,
.contact-cta,
.lightbox-content,
.lightbox-caption {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-gold);
}
