﻿:root {
  --primary: #c8963e;
  --primary-dark: #a87a2e;
  --primary-light: #e8c56a;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #333;
  --text: #4a4a4a;
  --text-light: #767676;
  --light: #f9f9f9;
  --light-2: #f0f0f0;
  --white: #ffffff;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Lora', serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 90px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { font-family: var(--font-primary); color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left { opacity: 0; transform: translateX(-70px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(70px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translate(0,0); }

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.75s; }

/* HERO ENTRANCE */
.hero__content { animation: heroIn 1.2s ease forwards; }
@keyframes heroIn { 0% { opacity: 0; transform: translateY(60px); } 100% { opacity: 1; transform: translateY(0); } }

/* SECTION */
.section { padding: 100px 0; }
.section__header { text-align: center; margin-bottom: 70px; }
.section__tag { display: inline-block; background: rgba(200,150,62,0.12); color: var(--primary); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 8px 22px; border-radius: 4px; margin-bottom: 20px; }
.section__header h2 { font-family: var(--font-display); font-size: 3rem; color: var(--dark); margin-bottom: 16px; line-height: 1.15; }
.section__header p { color: var(--text-light); font-size: 1.15rem; max-width: 620px; margin: 0 auto; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: var(--header-h); transition: var(--transition); background: #000000; }
.header.scrolled { background: rgba(0,0,0,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header__logo img { height: 84px; width: auto; }
.header__nav ul { display: flex; gap: 32px; }
.header__nav a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 600; transition: var(--transition); position: relative; }
.header__nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.header__nav a:hover { color: var(--primary); }
.header__nav a:hover::after { width: 100%; }
.header__phone { display: flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 700; font-size: 1rem; transition: var(--transition); }
.header__phone:hover { color: var(--primary-light); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: url('../hero image.jpg') center center / cover no-repeat; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__title { font-family: var(--font-display); font-size: 4.2rem; color: var(--white); line-height: 1.1; margin-bottom: 24px; }
.hero__title span { color: var(--primary); }
.hero__subtitle { font-size: 1.3rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 580px; line-height: 1.5; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__badge { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__badge span { color: rgba(255,255,255,0.8); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.hero__badge i { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; border-radius: 4px; font-weight: 700; font-size: 1.05rem; transition: var(--transition); cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 0.5px; }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,150,62,0.35); }
.btn--secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn--secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 20px 48px; font-size: 1.15rem; }
.btn--block { width: 100%; justify-content: center; }

/* SECTION CTA */
.section__cta { display: flex; gap: 16px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.about__cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* MARQUEE */
.marquee { background: var(--dark); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.marquee__track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; width: fit-content; }
.marquee__track span { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; padding: 0 18px; }
.marquee__track .sep { color: var(--primary); font-weight: 700; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TRUST */
.trust { background: var(--white); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust__card { text-align: center; padding: 44px 28px; border-radius: var(--radius); background: var(--light); transition: var(--transition); border: 1px solid transparent; }
.trust__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(200,150,62,0.2); }
.trust__icon { width: 72px; height: 72px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.7rem; color: var(--white); }
.trust__card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; }
.trust__card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* ABOUT */
.about { background: var(--light); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__image-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__image-wrap img { width: 100%; height: 480px; object-fit: cover; transition: var(--transition); }
.about__image-wrap:hover img { transform: scale(1.03); }
.about__content .section__tag { margin-bottom: 16px; }
.about__content h2 { font-family: var(--font-display); font-size: 2.6rem; color: var(--dark); margin-bottom: 24px; line-height: 1.2; }
.about__content p { margin-bottom: 18px; line-height: 1.7; font-size: 1.05rem; }
.about__content p:last-child { margin-bottom: 0; }

/* SERVICES */
.services { background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service__card { background: var(--light); border-radius: var(--radius); overflow: hidden; transition: var(--transition); border: 1px solid transparent; }
.service__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,150,62,0.15); }
.service__img { width: 100%; height: 220px; overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service__card:hover .service__img img { transform: scale(1.06); }
.service__body { padding: 28px 24px; }
.service__body h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 12px; }
.service__body p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }

/* PROCESS */
.process { background: var(--light); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--primary), rgba(200,150,62,0.2)); }
.process__step { text-align: center; position: relative; z-index: 2; }
.process__num { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 4px 15px rgba(200,150,62,0.3); }
.process__step h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; }
.process__step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* GALLERY */
.gallery { background: var(--white); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery__item { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; opacity: 0; transition: var(--transition); }
.gallery__item:hover::after { opacity: 1; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox__content { max-width: 90vw; max-height: 85vh; }
.lightbox__content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox__close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; transition: var(--transition); z-index: 2001; }
.lightbox__close:hover { color: var(--primary); transform: rotate(90deg); }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 1.8rem; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover, .lightbox__next:hover { background: var(--primary); }
.lightbox__counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 500; }

/* REVIEWS */
.reviews { background: var(--light); }
.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 860px; margin: 0 auto; }
.review__card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: var(--transition); }
.review__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review__stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 18px; letter-spacing: 2px; }
.review__text { font-size: 1.1rem; line-height: 1.6; color: var(--text); margin-bottom: 24px; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 14px; }
.review__avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review__author strong { display: block; font-size: 1rem; color: var(--dark); }
.review__author span { font-size: 0.85rem; color: var(--text-light); }

/* CTA */
.cta { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); text-align: center; }
.cta__content h2 { font-family: var(--font-display); font-size: 3rem; color: var(--white); margin-bottom: 24px; }
.cta__content > p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 620px; margin: 0 auto 10px; line-height: 1.6; }
.cta__info { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 36px 0; }
.cta__item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta__item i { color: var(--primary); font-size: 1.2rem; width: 22px; }
.cta__item a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.cta__item a:hover { color: var(--primary); }

/* FOOTER */
.footer { background: var(--dark-2); padding: 60px 0 0; border-top: 3px solid var(--primary); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__logo { height: 80px; width: auto; margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 1rem; }
.footer__social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
.footer__links ul, .footer__contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: var(--transition); }
.footer__links a:hover, .footer__contact a:hover { color: var(--primary); padding-left: 4px; }
.footer__contact li { color: rgba(255,255,255,0.6); font-size: 0.95rem; display: flex; align-items: center; gap: 10px; }
.footer__contact li i { color: var(--primary); width: 16px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer__bottom p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* COMING SOON PAGE */
.coming-soon { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: calc(var(--header-h) + 40px) 20px 60px; }
.coming-soon__box { max-width: 460px; width: 100%; text-align: center; background: var(--white); padding: 50px 40px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.coming-soon__box i { font-size: 2.2rem; color: var(--primary); margin-bottom: 18px; }
.coming-soon__box h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--dark); margin-bottom: 12px; }
.coming-soon__box p { font-size: 1rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.6; }
.coming-soon__sub { font-size: 0.9rem !important; color: var(--text-light) !important; margin-bottom: 0 !important; }
.coming-soon__actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }

/* FLOATING WIDGET */
.floating-widget { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.widget-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.widget-btn--call { background: #2563eb; }
.widget-btn--call:hover { background: #1d4ed8; transform: scale(1.1); }
.widget-btn--whatsapp { background: #25d366; }
.widget-btn--whatsapp:hover { background: #1da851; transform: scale(1.1); }
.widget-btn--quote { background: var(--primary); }
.widget-btn--quote:hover { background: var(--primary-dark); transform: scale(1.1); }
.floating-widget a { color: var(--white); }

/* QUOTE POPUP */
.quote-popup { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.quote-popup.active { display: flex; }
.quote-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.quote-popup__form { position: relative; background: var(--white); border-radius: var(--radius); padding: 40px 36px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.quote-popup__close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); transition: var(--transition); }
.quote-popup__close:hover { color: var(--dark); }
.quote-popup__form h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--dark); margin-bottom: 8px; }
.quote-popup__form > p { color: var(--text-light); margin-bottom: 24px; font-size: 0.95rem; }
.quote-popup__form input, .quote-popup__form select, .quote-popup__form textarea { width: 100%; padding: 14px 16px; border: 2px solid var(--light-2); border-radius: 4px; font-size: 1rem; font-family: var(--font-primary); margin-bottom: 14px; transition: var(--transition); background: var(--light); }
.quote-popup__form input:focus, .quote-popup__form select:focus, .quote-popup__form textarea:focus { outline: none; border-color: var(--primary); }
.quote-popup__form textarea { resize: vertical; }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 85px; }
  body { font-size: 1.15rem; }
  
  .header__phone { display: none; }
  .hamburger { display: flex; }
  .header__nav { position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh; background: #000; padding: 100px 40px 40px; transition: var(--transition); box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
  .header__nav.active { right: 0; }
  .header__nav ul { flex-direction: column; gap: 8px; }
  .header__nav a { font-size: 1.15rem; padding: 14px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero__title { font-size: 3.2rem; }
  .hero__subtitle { font-size: 1.1rem; }
  .hero__cta { flex-direction: column; gap: 12px; }
  .btn { width: auto; justify-content: center; padding: 16px 28px; font-size: 0.95rem; }
  .btn--lg { padding: 16px 28px; font-size: 0.95rem; }
  .section { padding: 70px 0; }
  .section p { font-size: 1.1rem; line-height: 1.7; }
  .section__header h2 { font-size: 2.2rem; }
  .section__header p { font-size: 1.05rem; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__card p { font-size: 1.05rem; }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about { overflow: hidden; }
  .about__image-wrap img { height: 300px; }
  .about__content h2 { font-size: 2rem; }
  .about__content p { font-size: 1.15rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service__img { height: 200px; }
  .service__body p { font-size: 1.05rem; }
  .process__steps { grid-template-columns: 1fr; gap: 32px; }
  .process__steps::before { display: none; }
  .process__step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .process__num { margin: 0; width: 72px; height: 72px; font-size: 1.4rem; }
  .gallery__grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .cta__content h2 { font-size: 2.2rem; }
  .cta__info { flex-direction: column; align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__logo { height: 50px; }
  .footer__brand p { font-size: 1.05rem; }
  .footer h4 { font-size: 1.2rem; }
  .footer__links a, .footer__contact a, .footer__contact li { font-size: 1rem; }
  .coming-soon { padding: calc(var(--header-h) + 20px) 16px 40px; min-height: auto; }
  .coming-soon__box { padding: 36px 24px; }
  .coming-soon__box h2 { font-size: 1.5rem; }
  .coming-soon__box p { font-size: 0.95rem; }
  .coming-soon__box i { font-size: 1.8rem; }
  .coming-soon__actions { flex-direction: column; align-items: stretch; }
  .widget-btn { width: 62px; height: 62px; font-size: 1.5rem; }
  .floating-widget { bottom: 24px; right: 24px; gap: 14px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.6rem; }
  .section__header h2 { font-size: 1.9rem; }
  .quote-popup__form { padding: 32px 20px; }
  .quote-popup__form h3 { font-size: 1.5rem; }
  .coming-soon__box { padding: 32px 16px; }
  .coming-soon__box h2 { font-size: 1.4rem; }
  .coming-soon__actions { flex-direction: column; }
  .coming-soon__actions .btn { width: 100%; }
}
