/* ===== VARIABLES CSS ===== */
:root {
  /* Colors */
  --color-ivory: #FEFCF8;
  --color-cream-rose: #FAF7F4;
  --color-powder-beige: #F2EDE7;
  --color-pearl-gray: #E8E6E3;
  --color-soft-charcoal: #2F2F2F;
  --color-powder-rose: #E6C2C6;
  --color-champagne: #F7E7CE;
  --color-rose-gold: #E8B4A0;
  --color-elegant-bordeaux: #8B4A6B;
  
  /* Typography */
  --font-playfair: 'Playfair Display', serif;
  --font-lato: 'Lato', sans-serif;
  
  /* Font Sizes */
  --h1-font-size: 3rem;
  --h2-font-size: 2.25rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  
  /* Font Weight */
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;
  
  /* Margins */
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* Responsive Typography */
@media screen and (max-width: 968px) {
  :root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.875rem;
    --small-font-size: 0.813rem;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-lato);
  font-size: var(--normal-font-size);
  color: var(--color-soft-charcoal);
  background-color: var(--color-ivory);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: var(--font-playfair);
  font-weight: var(--font-semi-bold);
  color: var(--color-soft-charcoal);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.25rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--color-soft-charcoal);
  text-align: center;
  margin-bottom: var(--mb-1);
}

.section__subtitle {
  color: var(--color-elegant-bordeaux);
  text-align: center;
  margin-bottom: var(--mb-3);
  font-style: italic;
}

.section__header {
  margin-bottom: var(--mb-3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-lato);
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-elegant-bordeaux), var(--color-rose-gold));
  color: white;
  box-shadow: 0 8px 32px rgba(139, 74, 107, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 74, 107, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--color-soft-charcoal);
  border-color: var(--color-soft-charcoal);
}

.btn--secondary:hover {
  background: var(--color-soft-charcoal);
  color: white;
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--color-elegant-bordeaux);
  border-color: var(--color-elegant-bordeaux);
}

.btn--outline:hover {
  background: var(--color-elegant-bordeaux);
  color: white;
  transform: translateY(-3px);
}

.btn--full {
  width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.header.scroll-header {
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__list {
  display: flex;
  column-gap: 2rem;
}

.nav__link {
  font-weight: var(--font-regular);
  color: var(--color-soft-charcoal);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-elegant-bordeaux);
  transition: var(--transition);
  transform: translateX(-50%);
}

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

.nav__link:hover,
.nav__link.active-link {
  color: var(--color-elegant-bordeaux);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-soft-charcoal);
  z-index: var(--z-fixed);
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-elegant-bordeaux);
  font-weight: var(--font-semi-bold);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: var(--color-champagne);
  transition: var(--transition);
  font-size: 0.9rem;
}

.nav__phone:hover {
  background: var(--color-elegant-bordeaux);
  color: white;
  transform: translateY(-2px);
}

.nav__phone i {
  font-size: 1rem;
}

.nav__toggle {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* BURGER MENU - MOBILE ONLY */
.nav__toggle, #nav-toggle {
  width: 45px;
  height: 45px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

/* Hide burger when menu is open */
.nav__menu.show-menu {
  right: 0;
}

.show-menu-active .nav__toggle,
.show-menu-active #nav-toggle {
  display: none !important;
}

/* BURGER ICON CSS */
.burger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  width: 100%;
  height: 3px;
  background: #2F2F2F;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle:hover .burger-icon span {
  background: #8B4A6B;
}

/* CLOSE ICON CSS */
.close-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon span {
  position: absolute;
  width: 24px;
  height: 3px;
  background: #2F2F2F;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

.nav__close:hover .close-icon span {
  background: #8B4A6B;
}

@media screen and (max-width: 1024px) {
  .nav__list {
    display: none;
  }
  
  .nav__phone {
    display: none;
  }
  
  .nav__toggle, #nav-toggle {
    display: flex;
    background: transparent !important;
    border: none !important;
  }
}


/* ===== HERO SECTION ===== */
.hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(139,74,107,0.3));
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__data {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1-5);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--mb-2-5);
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio__item--large {
  grid-column: span 2;
}

.portfolio__item--tall {
  grid-row: span 2;
}

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

.portfolio__item:hover .portfolio__img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.portfolio__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio__item:hover .portfolio__overlay {
  transform: translateY(0);
}

.portfolio__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

.portfolio__subtitle {
  font-size: var(--small-font-size);
  opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--color-cream-rose);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about__content .section__title {
  text-align: left;
  margin-bottom: var(--mb-1-5);
}

.about__text {
  margin-bottom: var(--mb-1-5);
  color: var(--color-soft-charcoal);
  text-align: justify;
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: var(--mb-2);
}

.about__stat {
  text-align: center;
}

.about__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--color-elegant-bordeaux);
  font-family: var(--font-playfair);
}

.about__stat-text {
  font-size: var(--small-font-size);
  color: var(--color-soft-charcoal);
}

/* ===== SERVICES SECTION ===== */
.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.service__card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service__card--featured {
  border: 3px solid var(--color-elegant-bordeaux);
  transform: scale(1.05);
}

.service__card--featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service__badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--color-elegant-bordeaux);
  color: white;
  padding: 0.5rem 3rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  transform: rotate(45deg);
}

.service__header {
  margin-bottom: var(--mb-2);
}

.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1);
  color: var(--color-soft-charcoal);
}

.service__price {
  margin-bottom: var(--mb-1-5);
}

.service__price-amount {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  color: var(--color-elegant-bordeaux);
  font-family: var(--font-playfair);
}

.service__list {
  margin-bottom: var(--mb-2);
  text-align: left;
}

.service__item {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-pearl-gray);
  position: relative;
  padding-left: 1.5rem;
}

.service__item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-elegant-bordeaux);
  font-weight: var(--font-bold);
}

.service__item:last-child {
  border-bottom: none;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: var(--color-powder-beige);
}

.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial__card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial__content {
  margin-bottom: var(--mb-2);
}

.testimonial__text {
  font-style: italic;
  color: var(--color-soft-charcoal);
  line-height: 1.7;
  position: relative;
}

.testimonial__text::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-elegant-bordeaux);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: var(--font-playfair);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--color-soft-charcoal);
  margin-bottom: 0.25rem;
}

.testimonial__date {
  font-size: var(--small-font-size);
  color: var(--color-elegant-bordeaux);
}

/* ===== CONTACT SECTION ===== */
.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-2);
  color: var(--color-soft-charcoal);
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: var(--mb-2);
}

.contact__info-icon {
  color: var(--color-elegant-bordeaux);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact__info-item h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--color-soft-charcoal);
}

.contact__info-item p,
.contact__info-item a {
  color: var(--color-soft-charcoal);
  font-size: var(--normal-font-size);
}

.contact__info-item a:hover {
  color: var(--color-elegant-bordeaux);
}

.contact__guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-champagne);
  padding: 1rem;
  border-radius: 10px;
  margin-top: var(--mb-2);
}

.contact__guarantee i {
  color: var(--color-elegant-bordeaux);
}

/* ===== FORM STYLES ===== */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--color-soft-charcoal);
}

.form__input,
.form__textarea {
  padding: 1rem;
  border: 2px solid var(--color-pearl-gray);
  border-radius: 10px;
  font-family: var(--font-lato);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  background: white;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-elegant-bordeaux);
  box-shadow: 0 0 0 3px rgba(139, 74, 107, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form__checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.form__checkbox label {
  font-size: var(--small-font-size);
  line-height: 1.4;
}

.form__message {
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: none;
}

.form__message--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form__message--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-soft-charcoal);
  color: white;
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: var(--mb-1);
  filter: brightness(0) invert(1);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  color: white;
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact i {
  color: var(--color-rose-gold);
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--color-rose-gold);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: var(--z-modal);
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  color: var(--color-rose-gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__prev {
  left: -60px;
}

.lightbox__next {
  right: -60px;
}

.lightbox__caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: var(--normal-font-size);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  
  .portfolio__item--large {
    grid-column: span 1;
  }
  
  .portfolio__item--tall {
    grid-row: span 1;
  }
}

@media screen and (max-width: 768px) {
  .mobile-call-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 18px 1rem !important;
    background: #8B4A6B !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    z-index: 9999 !important;
    line-height: 1 !important;
    gap: 8px !important;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .nav__phone {
    display: none !important;
  }
  
  .nav__toggle {
    display: flex !important;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-charcoal) !important;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: var(--z-fixed);
    background: rgba(139, 74, 107, 0.2) !important;
    border: 2px solid var(--color-elegant-bordeaux) !important;
    border-radius: 8px !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 999;
    padding: 2rem;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__menu .nav__list {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    list-style: none;
  }
  
  .nav__item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
  }
  
  .nav__item:nth-child(1) { animation-delay: 0.1s; }
  .nav__item:nth-child(2) { animation-delay: 0.2s; }
  .nav__item:nth-child(3) { animation-delay: 0.3s; }
  .nav__item:nth-child(4) { animation-delay: 0.4s; }
  .nav__item:nth-child(5) { animation-delay: 0.5s; }
  .nav__item:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .nav__link {
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--color-soft-charcoal);
    padding: 1rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
  }
  
  .nav__link:hover,
  .nav__link.active-link {
    background: var(--color-elegant-bordeaux);
    color: white;
    transform: scale(1.05);
  }
  
  .nav__close,
  .nav__toggle {
    display: flex !important;
  }
  
  .nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nav__close:hover {
    transform: rotate(90deg) scale(1.1);
  }
  
  .section {
    padding: 4rem 0 2rem;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 250px);
  }
  
  .services__container {
    grid-template-columns: 1fr;
  }
  
  .service__card--featured {
    transform: none;
  }
  
  .service__card--featured:hover {
    transform: translateY(-10px);
  }
  
  .testimonials__container {
    grid-template-columns: 1fr;
  }
  
  .contact__form {
    grid-template-columns: 1fr;
  }
  
  .about__stats {
    justify-content: center;
  }
  
  .lightbox__nav {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .mobile-call-btn {
    display: block !important;
    font-size: 1rem;
  }
  
  .nav__toggle {
    display: block !important;
    position: relative;
    z-index: var(--z-fixed);
  }
  
  .hero__title {
    font-size: 1.75rem;
  }
  
  .hero__buttons {
    gap: 0.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .portfolio__grid {
    grid-template-rows: repeat(8, 200px);
  }
  
  .service__card {
    padding: 1.5rem;
  }
  
  .testimonial__card {
    padding: 1.5rem;
  }
  
  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== MOBILE CALL BUTTON ===== */
.mobile-call-btn {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  z-index: 999;
  background: var(--color-elegant-bordeaux);
  color: white !important;
  padding: 1rem;
  font-weight: var(--font-semi-bold);
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: none;
  margin: 0;
  
  /* FORCE PERFECT CENTERING */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  gap: 0.5rem;
}

.mobile-call-btn:hover {
  background: var(--color-rose-gold);
  color: white;
}

.mobile-call-btn i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

/* ===== MOBILE SPECIFIC STYLES ===== */
@media screen and (max-width: 1024px) {
  .nav__list {
    display: none;
  }
  
  .nav__toggle {
    display: flex !important;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-charcoal);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: var(--z-fixed);
  }
}

@media screen and (max-width: 768px) {
  .mobile-call-btn {
    display: flex !important;
  }
  
  body {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 480px) {
  .mobile-call-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 20px 1rem !important;
    background: #8B4A6B !important;
    color: white !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    z-index: 9999 !important;
    line-height: 1 !important;
    gap: 10px !important;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .nav__phone {
    display: none !important;
  }
  
  .nav__toggle {
    display: flex !important;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-charcoal) !important;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: var(--z-fixed);
    background: rgba(139, 74, 107, 0.3) !important;
    border: 2px solid var(--color-elegant-bordeaux) !important;
    border-radius: 8px !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}