:root {
  --rose-gold: #D89A9D;
  --rose-gold-light: #fd5d6;
  --rose-gold-dark: #c47a7e;
  --black: #111111;
  --white: #FFFFFF;
  --light-grey: #F7F7F7;
  --charcoal: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --transition: .4s cubic-bezier(.25, .1, .25, 1);
  --shadow-sm:  2px 10px rgba(,,,.06);
  --shadow-md:  10px 40px rgba(,,,.08);
  --shadow-lg:  20px 60px rgba(,,,.12);
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-top: ;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.2em; }
a { color: var(--rose-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-gold-dark); }
img { max-width: 100%; height: auto; }
.container { max-width: 120px; margin:  auto; padding:  20px; }
.section { padding: 100px ; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--light-grey); }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 { margin-bottom: 15px; }
.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin:  auto;
}
.rose-text { color: var(--rose-gold); }
.rose-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-dark));
  margin: 20px auto;
}
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow:  4px 20px rgba(216,154,157,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:  8px 30px rgba(216,154,157,.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}
.btn-rose-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 2px solid var(--rose-gold);
}
.btn-rose-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
}

/* ===== HEADER ===== */
.vlcreate-header {
  position: fixed;
  top: ;
  left: ;
  right: ;
  z-index: 100;
  padding: 20px 40px;
  transition: var(--transition);
  background: transparent;
}
.vlcreate-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow:  2px 30px rgba(,,,.08);
}
.header-container {
  max-width: 140px;
  margin:  auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding .custom-logo-link { display: flex; align-items: center; }
.site-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--black);
  transition: var(--transition);
}
.vlcreate-header.scrolled .site-title { color: var(--black); }
.main-navigation ul {
  list-style: none;
  margin: ;
  padding: ;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-navigation ul li a {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .06em;
  position: relative;
  padding: 5px ;
  transition: var(--transition);
}
.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: ;
  left: ;
  width: ;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}
.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after { width: 100%; }
.main-navigation ul li a:hover { color: var(--rose-gold); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  position: absolute;
  transition: var(--transition);
}
.menu-toggle-icon { top: 50%; transform: translateY(-50%); }
.menu-toggle-icon::before { content: ''; top: -8px; }
.menu-toggle-icon::after { content: ''; top: 8px; }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.hero-content {
  max-width: 140px;
  margin:  auto;
  padding: 120px 40px 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rose-gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-decoration {
  position: absolute;
  top: ;
  right: ;
  width: 45%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-decoration .flowing-line {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(216,154,157,.15);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.hero-decoration .flowing-line:nth-child(2) {
  top: 40%;
  right: -50px;
  width: 400px;
  height: 400px;
  animation-duration: 25s;
  animation-direction: reverse;
}
.hero-decoration .flowing-line:nth-child(3) {
  top: 10%;
  right: 50px;
  width: 300px;
  height: 300px;
  border-color: rgba(216,154,157,.08);
  animation-duration: 20s;
}
@keyframes rotate {
  from { transform: rotate(deg); }
  to { transform: rotate(360deg); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}
.service-card::before {
  content: '';
  position: absolute;
  top: ;
  left: ;
  right: ;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-dark));
  transform: scaleX();
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--rose-gold);
  font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--rose-gold);
  color: var(--white);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: .95rem;
  color: #666;
  margin-bottom: ;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition);
}
.portfolio-overlay {
  position: absolute;
  inset: ;
  background: rgba(17,17,17,.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: ;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.portfolio-overlay span {
  color: var(--rose-gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid #eee;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 3rem;
  color: var(--rose-gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .3;
}
.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-company {
  font-size: .85rem;
  color: #999;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px ;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #eee;
  transform: translateY(-50%);
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
}
.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin:  auto 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--rose-gold);
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: var(--rose-gold);
  color: var(--white);
}
.process-step h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.process-step p {
  font-size: .85rem;
  color: #999;
  margin: ;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.why-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #eee;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-card .counter {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 8px;
}
.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: .95rem; color: #666; margin: ; }

/* ===== PRINTING SHOWCASE ===== */
.printing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.printing-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}
.printing-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.printing-item:hover img { transform: scale(1.05); }
.printing-item .printing-label {
  position: absolute;
  bottom: ;
  left: ;
  right: ;
  padding: 20px;
  background: linear-gradient(transparent, rgba(,,,.7));
  color: var(--white);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.vlcreate-footer {
  background: transparent;
  color: var(--white);
  padding: 80px 40px 30px;
}
.footer-container { max-width: 120px; margin:  auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-title { color: var(--white); }
.footer-tagline { font-size: .95rem; margin: 16px ; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--rose-gold);
  background: var(--rose-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--rose-gold); }
.widget-title {
  font-family: var(--font-heading);
  color: var(--white) !important;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.vlcreate-whatsapp-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:  4px 20px rgba(37,211,102,.3);
  transition: var(--transition);
}
.vlcreate-whatsapp-btn:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow:  6px 25px rgba(37,211,102,.4);
}
.vlcreate-whatsapp-btn svg { width: 28px; height: 28px; }

/* ===== STICKY QUOTE BUTTON ===== */
.vlcreate-sticky-quote {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 999;
  writing-mode: vertical-rl;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  padding: 20px 12px;
  border-radius: 12px 12px  ;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: var(--transition);
  box-shadow:  4px 20px rgba(216,154,157,.3);
}
.vlcreate-sticky-quote:hover {
  transform: translateY(-50%) rotate(180deg) translateX(-3px);
  color: var(--white);
  box-shadow:  8px 30px rgba(216,154,157,.4);
}

/* ===== CONTACT FORM ===== */
.vlcreate-form .form-group { margin-bottom: 20px; }
.vlcreate-form label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.vlcreate-form input,
.vlcreate-form select,
.vlcreate-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}
.vlcreate-form input:focus,
.vlcreate-form select:focus,
.vlcreate-form textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow:    3px rgba(216,154,157,.1);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-content { padding: 24px; }
.blog-card .blog-category {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--rose-gold);
  margin-bottom: 8px;
  display: block;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--black); }
.blog-card h3 a:hover { color: var(--rose-gold); }
.blog-card p { font-size: .9rem; color: #666; }

/* ===== PAGE HEADER ===== */
.page-header-section {
  padding: 180px 40px 80px;
  background: var(--light-grey);
  text-align: center;
}
.page-header-section h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.page-header-section .breadcrumbs {
  font-size: .85rem;
  color: #999;
}

/* ===== ABOUT SECTION ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split .about-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-split .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}
.team-card {
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}
.team-card .team-info { padding: 20px ; }
.team-card h4 { margin-bottom: 5px; }
.team-card .team-position {
  color: var(--rose-gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ===== CONTACT SPLIT ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-card {
  padding: 40px;
  background: var(--light-grey);
  border-radius: var(--radius);
}
.contact-info-card .contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
}

/* ===== ANIMATED COUNTERS ===== */
.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1;
}

/* ===== PRINTING PAGE SPECIFIC ===== */
.printing-showcase-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.printing-showcase-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}
.printing-showcase-item:hover img { transform: scale(1.03); }

/* ===== 404 PAGE ===== */
.error-404-section {
  text-align: center;
  padding: 200px 40px;
}
.error-404-section h1 {
  font-size: 8rem;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* ===== SEARCH RESULTS ===== */
.search-result-item {
  padding: 24px;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
}
.search-result-item:hover { background: var(--light-grey); }