@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --bg-dark: #121212;
  --bg-light: #F7F7F7;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted-dark: #666666;
  --text-muted-light: #AAAAAA;
  --border-light: #E5E5E5;
  --border-dark: #333333;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1300px;
  --container-padding: 2rem;
  --section-padding: 7rem 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #0d0d0d;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #0d0d0d;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography Utilities */
.serif { font-family: var(--font-serif); }
.sans { font-family: var(--font-sans); }

.text-small-caps {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.btn-transparent {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-transparent:hover {
  border-color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

.btn-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.btn-dark:hover {
  border-color: var(--text-dark);
  background: rgba(0,0,0,0.02);
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 68px;
  max-height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 80px;
  max-height: 90px;
}

.brand-ea {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}

.brand-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

/* Mobile Nav Toggle Button - Sophisticated Architectural Design */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 105;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.mobile-nav-toggle .bar {
  display: block;
  height: 2px;
  background-color: var(--text-light, #ffffff);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: right center;
}

/* Sophisticated Asymmetrical Bar Widths */
.mobile-nav-toggle .bar-1 {
  width: 28px;
}

.mobile-nav-toggle .bar-2 {
  width: 18px;
  opacity: 0.85;
}

.mobile-nav-toggle .bar-3 {
  width: 23px;
  opacity: 0.95;
}

/* Active X State */
.mobile-nav-toggle.active .bar-1 {
  width: 26px;
  transform: rotate(-45deg) translate(-2px, 2px);
  background-color: #ffffff;
}

.mobile-nav-toggle.active .bar-2 {
  width: 0;
  opacity: 0;
  transform: translateX(12px);
}

.mobile-nav-toggle.active .bar-3 {
  width: 26px;
  transform: rotate(45deg) translate(-2px, -2px);
  background-color: #ffffff;
}

body.no-scroll {
  overflow: hidden;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.1) 100%);
  z-index: 2;
}

.hero-blueprint {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 100V0h100v100H0zm1-1h98V1H1v98z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  z-index: 2;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  color: #E0E0E0;
  max-width: 600px;
  line-height: 1.8;
}

.hero-location {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-location::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--text-muted-light);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

.scroll-arrow {
  animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* Services / Intro Section */
.intro-services {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.intro-left .small-heading {
  margin-bottom: 2rem;
  color: var(--text-muted-dark);
}

.intro-left h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}

.services-accordion {
  border-top: 1px solid var(--border-light);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: padding-left 0.3s;
}

.service-item:hover {
  padding-left: 1rem;
}

.service-number {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  margin-right: 2rem;
  font-variant-numeric: tabular-nums;
}

.service-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  flex-grow: 1;
}

.service-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted-dark);
}

/* Projects & Gallery Section */
.projects {
  padding: 5rem 0 7rem 0;
  background: var(--bg-light);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.projects-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Gallery Filter Tabs */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 30px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #111;
  background: rgba(0, 0, 0, 0.04);
}

.filter-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Gallery Grid & Cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Gallery Card Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4af37;
  margin-bottom: 0.35rem;
  display: inline-block;
  font-weight: 500;
}

.gallery-item-title {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  transition: background 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-zoom-icon {
  background: rgba(255,255,255,0.9);
  color: #111;
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2010;
  transition: background 0.3s, transform 0.3s;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.lightbox-close {
  top: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
}

.lightbox-content {
  position: relative;
  z-index: 2005;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
  margin-top: 1.25rem;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
}

.lightbox-caption h3 {
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0.25rem 0;
}

.lightbox-caption p {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.lightbox-counter {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #888;
}

/* Process Section */
.process {
  padding: 5rem 0 8rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
  text-align: left;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border-light);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.step-num {
  font-size: 0.75rem;
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
  background: var(--bg-light);
  padding: 0 10px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.step-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* About Section */
.about {
  padding: 0 0 7rem 0;
  background: var(--bg-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-image {
  height: 600px;
  background: var(--bg-dark);
}

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

.about-content {
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
}

.about-content .small-heading {
  margin-bottom: 2rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-content .small-heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.about-content p {
  color: var(--text-muted-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-content .btn-transparent {
  align-self: flex-start;
  margin-top: 1rem;
}

/* Bottom CTA */
.cta-bottom {
  position: relative;
  padding: 7rem 0;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.cta-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.cta-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--text-light);
  margin-top: 2rem;
}

/* Dynamic CTA Form */
.cta-form-container {
  background: rgba(18, 18, 18, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
}

.cta-dynamic-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group select {
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.form-group select option {
  background: #181818;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: #ffffff;
  color: #111111;
  border: none;
  border-radius: 6px;
  padding: 0.95rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  background: #d4af37;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.form-feedback {
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 6px;
  display: none;
}

.form-feedback.success {
  display: block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  color: #25D366;
}

.form-feedback.error {
  display: block;
  background: rgba(220, 39, 67, 0.15);
  border: 1px solid #dc2743;
  color: #ff4d6d;
}

/* Floating WhatsApp Button (Bottom Left) */
.whatsapp-float-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.whatsapp-float-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  background: #20ba59;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.float-badge-pronto {
  position: absolute;
  top: -6px;
  right: -10px;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  color: #d4af37;
  border: 1px solid #d4af37;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
  text-transform: uppercase;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
.footer {
  background: #0A0A0A;
  color: #888888;
  padding: 5rem 0 2rem 0;
  font-size: 0.8rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand .brand-logo {
  margin-bottom: 1.5rem;
}

/* Footer Social Networks */
.footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(220, 39, 67, 0.35);
}

.social-link.tiktok:hover {
  background: #000000;
  border-color: #00f2fe;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: -3px 3px 12px rgba(0, 242, 254, 0.4), 3px -3px 12px rgba(254, 44, 85, 0.4);
}

.social-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-btn.tiktok:hover {
  background: #000000;
  border-color: #00f2fe;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: -2px 2px 10px rgba(0, 242, 254, 0.3), 2px -2px 10px rgba(254, 44, 85, 0.3);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul li a {
  color: #888888;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--text-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.contact-item i {
  margin-top: 0.2rem;
}
.contact-item a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.developer-link {
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
  .intro-layout, .about-layout, .cta-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }
  .process-grid::before { display: none; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14, 14, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    font-weight: 300;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .lightbox-prev {
    left: 0.75rem;
    width: 42px;
    height: 42px;
  }
  .lightbox-next {
    right: 0.75rem;
    width: 42px;
    height: 42px;
  }
  .lightbox-close {
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
  .lightbox-content img {
    max-height: 55vh;
  }
  .intro-left h2 {
    font-size: 1.4rem;
    line-height: 1.35;
  }
  .whatsapp-float-container {
    bottom: 1.25rem;
    left: 1.25rem;
  }
  .whatsapp-float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }
  .brand-logo-img { height: 50px; }
  .hero-title { font-size: 2.2rem; }
  .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 3rem 1.5rem;
  }
  .cta-actions {
    align-items: flex-start;
  }
}

/* Admin Card Actions on Landing Page Gallery */
.admin-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 50;
  display: flex;
  gap: 6px;
  background: rgba(14, 14, 14, 0.9);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}

.btn-card-action {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-card-replace:hover {
  background: #d4af37;
  color: #111;
}

.btn-card-delete:hover {
  background: #dc2743;
  color: #fff;
}

/* ==========================================
   ELEMENTOR STYLE LIVE VISUAL EDITOR BAR
   ========================================== */
.visual-editor-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: rgba(14, 14, 14, 0.96);
  border-bottom: 2px solid #d4af37;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #ffffff;
  font-size: 0.85rem;
}

.visual-editor-bar .editor-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #d4af37;
}

.visual-editor-bar .editor-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-editor-action {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-editor-action:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-editor-save {
  background: #d4af37;
  color: #111;
  border: none;
  font-weight: 700;
  animation: savePulse 2s infinite;
}

.btn-editor-save:hover {
  background: #f3e5ab;
  color: #111;
}

@keyframes savePulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Inline Editable Highlight Mode */
[contenteditable="true"].editable-active {
  outline: 2px dashed #d4af37 !important;
  outline-offset: 4px;
  background: rgba(212, 175, 55, 0.12) !important;
  border-radius: 4px;
  cursor: text;
  transition: all 0.2s ease;
}

[contenteditable="true"].editable-active:focus {
  outline: 2px solid #25D366 !important;
  background: rgba(37, 211, 102, 0.15) !important;
}

body.editor-mode-active {
  padding-top: 52px;
}

/* Floating Admin Bar on Landing Page */
.landing-admin-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  background: rgba(14, 14, 14, 0.98);
  border-bottom: 2px solid #d4af37;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}

.landing-admin-bar .admin-bar-tag {
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.05em;
}

.landing-admin-bar .admin-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.landing-admin-bar .btn-admin-bar {
  padding: 0.35rem 0.85rem;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  border: none;
}

.landing-admin-bar .btn-admin-save {
  background: #25D366;
  color: #ffffff;
}

.landing-admin-bar .btn-admin-save:hover {
  background: #20ba59;
}

.landing-admin-bar .btn-admin-logout {
  background: rgba(220, 39, 67, 0.2);
  color: #ff4d6d;
  border: 1px solid rgba(220, 39, 67, 0.4);
}

.landing-admin-bar .btn-admin-logout:hover {
  background: #dc2743;
  color: #ffffff;
}

