/* MFC Studio - Premium Design System CSS */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-main: #0a0a0b;
  --bg-surface: #121215;
  --bg-card: #18181c;
  --bg-input: #1f1f25;
  --primary: #d4af37;
  --primary-hover: #e5c158;
  --primary-glow: rgba(212, 175, 55, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --text-muted: #71717a;
  --border-color: #27272a;
  --border-focus: #4b4b57;
  --success: #10b981;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing & Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glass: rgba(18, 18, 21, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* Premium Typography Helper */
.gold-text {
  color: var(--primary);
  background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Top Bar Styling */
.top-bar {
  background: #060607;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info a, .top-bar-info span {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.top-bar-info a:hover {
  color: var(--primary);
}

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

.top-bar-social a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 11, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.logo span {
  font-weight: 300;
}

.logo img {
  height: 65px;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

/* Language Selector */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  margin-left: 0.5rem;
  align-self: center;
}

.lang-btn {
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.2rem 0.4rem;
  border-radius: var(--radius-sm);
}

.lang-btn.active, .lang-btn:hover {
  color: var(--primary);
}

.lang-sep {
  color: var(--text-muted);
  font-weight: 300;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
  color: #000;
  font-family: var(--font-title);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  color: #000;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s, opacity 1s ease-out 0.5s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.slide-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: #000;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* Services Grid */
.section-padding {
  padding: 8rem 0;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

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

.service-img-wrapper {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-icon-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.service-body {
  padding: 2.5rem;
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-card-link {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* About / Highlight section */
.about-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-img-group {
  position: relative;
  display: flex;
  gap: 1.5rem;
}

.about-img-main {
  width: 70%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-img-sub {
  width: 45%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  position: absolute;
  right: 0;
  bottom: -3rem;
  border: 4px solid var(--bg-main);
}

.about-badge {
  position: absolute;
  top: -2rem;
  left: -2rem;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-family: var(--font-title);
}

.about-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.stats-bar {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item .num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-title);
  color: var(--primary);
  display: block;
}

.stat-item .lbl {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Gallery Portfolio Layout */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 70%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

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

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

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-item-cat {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 6, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border: 1px solid var(--border-color);
}

.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-section.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.services-section.section-padding {
  padding-bottom: 3rem;
}

.blog-preview-section.section-padding {
  padding-top: 3rem;
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--border-color);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  scroll-snap-align: start;
}

.stars {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-family: var(--font-title);
}

.author-role {
  font-size: 0.8rem;
  color: var(--primary);
}

/* Service Detail Page layout */
.detail-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-main) 0%, rgba(10, 10, 11, 0.4) 100%);
  z-index: 2;
}

.detail-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: -2rem;
}

.detail-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--radius-md);
}

.detail-price-badge {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 2rem;
}

.detail-info-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.features-list li i {
  color: var(--primary);
}

/* Forms & Sidebar Contact */
.sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-info-icon {
  background: var(--primary-glow);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--primary);
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-content p, .contact-info-content a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.map-card {
  margin-top: 4rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 400px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Admin Panel Page CSS */
.admin-header {
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.admin-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.admin-tab-btn:hover {
  color: var(--text-primary);
}

.admin-tab-btn.active {
  color: var(--primary);
  border-color: var(--primary);
}

.admin-content-section {
  display: none;
}

.admin-content-section.active {
  display: block;
}

.admin-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.admin-card-title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-login-wrapper {
  max-width: 450px;
  margin: 10rem auto;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.admin-table th, .admin-table td {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem;
  text-align: left;
}

.admin-table th {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-secondary);
}

.admin-table img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-danger {
  background: #ef4444;
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-success:hover {
  background: #059669;
  transform: translateY(-2px);
}

.admin-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.image-preview {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-top: 0.5rem;
  display: block;
}

/* Modal for Admin Edits */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,5,6,0.85);
  backdrop-filter: blur(8px);
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
}

.admin-modal.active {
  display: flex;
}

.admin-modal-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

/* Footer Styling */
.footer {
  background: #060607;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.social-link {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

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

.animate-fade-in {
  animation: fadeIn 0.8s forwards ease-out;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-grid, .detail-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-group {
    justify-content: center;
    margin-bottom: 3rem;
  }
  .about-img-main {
    width: 60%;
  }
  .about-img-sub {
    width: 40%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-main);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-cta {
    display: none;
  }
  .slide-title {
    font-size: 2.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .section-padding {
    padding: 5rem 0;
  }
  .detail-info-card {
    padding: 1.5rem;
  }
}

/* Instagram Section Overhaul */
.instagram-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.instagram-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone Mockup Chassis */
.instagram-phone-mockup {
  width: 100%;
  max-width: 340px;
  perspective: 1000px;
}

.phone-frame {
  background: #000000;
  border: 12px solid #1f1f24;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 
              0 0 0 2px rgba(255, 255, 255, 0.05);
  aspect-ratio: 9 / 18.5;
  overflow: hidden;
}

/* Notch */
.phone-notch {
  width: 110px;
  height: 24px;
  background: #1f1f24;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-notch::before {
  content: '';
  position: absolute;
  width: 45px;
  height: 4px;
  background: #333;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}

/* Phone Screen (Instagram App UI) */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  padding-top: 25px; /* space under notch */
  overflow: hidden;
}

/* IG Header */
.ig-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #efefef;
}

.ig-back {
  font-size: 1.1rem;
  cursor: pointer;
  color: #262626;
}

.ig-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: #262626;
}

.ig-more {
  font-size: 1.1rem;
  cursor: pointer;
  color: #262626;
}

/* IG Profile Details */
.ig-profile-info {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 20px;
}

.ig-avatar-container {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}

.ig-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid #fff;
}

.ig-stats-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: center;
}

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

.ig-stat-num {
  font-size: 1rem;
  font-weight: 700;
  color: #262626;
}

.ig-stat-lbl {
  font-size: 0.75rem;
  color: #8e8e8e;
}

/* Bio */
.ig-bio {
  padding: 0 16px;
  line-height: 1.4;
}

.ig-bio-name {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #262626;
}

.ig-bio-cat {
  display: block;
  font-size: 0.8rem;
  color: #8e8e8e;
  margin-bottom: 4px;
}

.ig-bio-desc {
  font-size: 0.8rem;
  color: #262626;
  white-space: pre-line;
}

/* Buttons */
.ig-buttons-row {
  display: flex;
  padding: 12px 16px;
  gap: 8px;
}

.ig-btn {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.ig-btn-follow {
  background: #0095f6;
  color: #ffffff;
}

.ig-btn-message {
  background: #efefef;
  color: #262626;
}

.ig-btn:hover {
  opacity: 0.85;
}

/* Tabs */
.ig-tabs {
  display: flex;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  margin-top: 8px;
}

.ig-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: #8e8e8e;
  font-size: 1.1rem;
  cursor: pointer;
}

.ig-tab.active {
  color: #000;
  border-bottom: 1.5px solid #000;
}

/* Highlights / Reels Grid */
.ig-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
  flex: 1;
  background: #fafafa;
}

.reels-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}

.reels-thumbnail {
  aspect-ratio: 1 / 1.3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.reels-thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 1.25rem;
  background: rgba(0,0,0,0.4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #262626;
  margin-top: 4px;
}

/* Right Content */
.instagram-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ig-mini-badge {
  color: var(--primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ig-main-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.ig-title-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 2rem;
}

.ig-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Stats Cards */
.ig-stats-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ig-stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ig-stat-box.box-purple {
  border-left: 4px solid #cc2366;
}

.ig-stat-box.box-orange {
  border-left: 4px solid #f09433;
}

.box-num {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

.box-lbl {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Action Buttons */
.ig-actions {
  display: flex;
  gap: 1rem;
}

.btn-instagram-gradient {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff !important;
}

.btn-instagram-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.btn-outline-light {
  background: #ffffff;
  color: #000000 !important;
  border: 1px solid #ffffff;
}

.btn-outline-light:hover {
  background: transparent;
  color: #ffffff !important;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .instagram-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .instagram-right-content {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .ig-main-title {
    font-size: 2.2rem;
  }
  .ig-stats-boxes {
    grid-template-columns: 1fr;
  }
  .ig-actions {
    flex-direction: column;
    width: 100%;
  }
  .ig-actions .btn {
    justify-content: center;
  }
}

/* Homepage Map Section */
.map-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
  border-top: 1px solid var(--border-color);
}

.homepage-map-card {
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.homepage-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) invert(0.9) contrast(1.1); /* matches dark theme beautifully */
}

/* Home Vertical Spacing Overrides */
.about-section.section-padding {
  padding-bottom: 2rem;
}

.services-section.section-padding {
  padding-top: 2rem;
}

/* Mobile Responsiveness & Form Spacing Improvements */
@media (max-width: 576px) {
  .sidebar-card {
    padding: 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-info-box {
    padding: 1.25rem !important;
    gap: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Floating Contact Actions */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.float-call {
  background: var(--primary); /* Gold/Yellow theme color */
  color: #000000 !important;
}

.float-whatsapp {
  background: #25d366; /* Official Green */
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* Pulse animation for WhatsApp to grab attention */
@keyframes floatPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-whatsapp {
  animation: floatPulse 2s infinite;
}

/* Adjust layout on small screens if necessary */
@media (max-width: 576px) {
  .floating-contact {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
}
