:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --secondary: #2563EB;
  --secondary-light: #3B82F6;
  --accent: #F59E0B;
  --accent-light: #FBBF24;
  --accent-dark: #D97706;
  --background: #F8FAFC;
  --text: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 800;
}

.logo span .accent-text {
  color: var(--secondary);
  position: relative;
}

.logo-svg {
  filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.15));
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-light);
  position: relative;
  padding: 8px 0;
}

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

.nav-links a:hover {
  color: var(--secondary);
}

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

.nav-links a.active {
  color: var(--secondary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Sections Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.badge-title {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.badge-title.centered {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%), url('hero_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: calc(var(--header-height) + 60px) 0 100px;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.badge-icon {
  color: var(--accent);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #93C5FD;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #CBD5E1;
  max-width: 620px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Floating Graphics */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  position: absolute;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-design {
  top: 8%;
  left: 5%;
  width: 250px;
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-6deg);
  z-index: 3;
  animation: floatDesign 6s ease-in-out infinite;
}

.card-design h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 12px 0 6px;
}

.card-design p {
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.color-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.dot-c { background-color: #06B6D4; }
.dot-m { background-color: #EC4899; }
.dot-y { background-color: #F59E0B; }
.dot-k { background-color: #0F172A; border: 1px solid rgba(255, 255, 255, 0.15); }

.card-business-card {
  bottom: 8%;
  right: 5%;
  width: 280px;
  height: 160px;
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(5deg);
  z-index: 4;
  padding: 22px;
  animation: floatCard 5.2s ease-in-out infinite;
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card-logo {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--secondary);
  font-family: var(--font-heading);
}

.card-business-card h5 {
  font-size: 1.1rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.card-business-card p.title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-dark);
  letter-spacing: 0.5px;
}

.card-business-card p.phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.card-flyer {
  top: 25%;
  left: 45%;
  width: 170px;
  height: 230px;
  background: linear-gradient(135deg, var(--secondary), #1D4ED8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(2deg);
  z-index: 2;
  animation: floatFlyer 7s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.flyer-header {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.flyer-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.flyer-bar.short {
  width: 65%;
}

.flyer-badge {
  background: var(--accent);
  color: var(--primary);
  align-self: flex-end;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.75rem;
}

@keyframes floatDesign {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-14px); }
}

@keyframes floatCard {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(12px); }
}

@keyframes floatFlyer {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-11px); }
}

/* About Section */
.about-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.about-info p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-info p.main-para {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
}

.about-meta {
  display: flex;
  gap: 30px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.meta-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

.about-cta-row {
  display: flex;
  gap: 16px;
}

.about-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-light);
}

.about-card .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.about-card:hover .icon-box {
  background: var(--secondary);
  color: var(--white);
}

.about-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.2);
}

.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.1));
}

.service-info {
  padding: 32px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  position: absolute;
  top: -30px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid var(--border);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
  border-color: var(--secondary);
}

.service-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 12px;
}

.service-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link i {
  transition: var(--transition);
}

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

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

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.gallery-item:hover .gallery-icon, .gallery-item:hover .gallery-text {
  transform: translateY(0);
}

/* Pricing Section */
.pricing {
  background-color: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  padding: 50px 36px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: var(--transition);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary);
}

.pricing-card.recommended {
  border: 2.5px solid var(--secondary);
  box-shadow: var(--shadow-xl);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.pricing-features {
  margin-bottom: 36px;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--primary-light);
}

.pricing-features li.unavailable {
  color: var(--text-muted);
  opacity: 0.6;
}

.pricing-features i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.pricing-features li.unavailable i {
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.testimonial-card {
  min-width: 360px;
  flex: 1 0 30%;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-xl);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars i {
  color: var(--accent);
  font-size: 0.95rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--primary-light);
  font-style: italic;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
}

.client-info h4 {
  font-size: 1rem;
  font-weight: 700;
}

.client-info small {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-light);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--primary);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

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

.info-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.info-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--secondary);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: var(--secondary);
  color: var(--white);
}

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-link {
  color: var(--secondary);
  font-weight: 600;
}

.contact-link:hover {
  color: var(--secondary-light);
}

.sub-text {
  font-size: 0.8rem !important;
  margin-top: 2px;
}

.map-container {
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 30px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 100px 0 40px;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 24px;
}

.brand-desc {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-corp-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 0.85rem;
  color: #64748B;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

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

.footer-links ul li {
  margin-bottom: 14px;
}

.footer-links ul li a {
  color: #94A3B8;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-doc-link {
  font-weight: 600;
  color: var(--accent-light) !important;
}

.footer-doc-link:hover {
  color: var(--accent) !important;
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-light);
  transform: translateY(-4px);
}

/* Lightbox Modal CSS */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.lightbox-content {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  object-fit: contain;
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-heading);
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2002;
}

.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-arrow:hover {
  color: var(--accent);
  transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    margin-top: 20px;
  }
  
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

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

  .navbar {
    background: var(--white);
  }

  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.05rem;
  }
  
  .about-info h2 {
    font-size: 2.1rem;
  }
  
  .pricing-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-arrow {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    min-width: 280px;
    padding: 24px;
  }
}

/* Mobile Nav Overlay Menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  padding: 30px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 4px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  flex-grow: 1;
}

.mobile-nav ul li a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-light);
  display: block;
  padding: 8px 0;
}

.mobile-nav ul li a:hover, .mobile-nav ul li a.active {
  color: var(--secondary);
}

.mobile-nav-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  display: none;
}

.overlay.active {
  display: block;
}
