/* ============================================================
   Oliveira Paim Remodelações — style.css
   Theme: Yellow (#F5C800) / Black (#111) / White
   ============================================================ */

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

:root {
  --yellow:       #F5C800;
  --yellow-dark:  #d4a900;
  --yellow-light: #fff7cc;
  --black:        #111111;
  --black-2:      #1c1c1c;
  --black-3:      #2a2a2a;
  --white:        #ffffff;
  --off-white:    #f9f8f4;
  --gray-light:   #efefef;
  --gray:         #888;
  --text:         #111111;
  --text-light:   #555;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --radius:       10px;
  --radius-sm:    6px;
  --transition:   0.28s ease;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --navbar-h:     72px;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { color: var(--text-light); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  background: var(--yellow-light);
  border: 1px solid rgba(245,200,0,0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-intro { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.text-center { text-align: center; }
.highlight { color: var(--yellow-dark); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 4px;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,0,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--black-2); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-h);
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.06em; color: var(--white); line-height: 1; }
.nav-logo-sub { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); font-family: var(--font-body); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  padding: 0.4rem 0.85rem; border-radius: 4px;
  font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.8);
  transition: all var(--transition); letter-spacing: 0.04em;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); background: rgba(245,200,0,0.08); }

.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

/* Language */
.lang-dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.75rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  background: transparent; cursor: pointer; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.lang-btn svg { width: 13px; height: 13px; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--black-2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); overflow: hidden;
  min-width: 135px; display: none; z-index: 100;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.8);
  transition: background var(--transition);
}
.lang-menu a:hover { background: rgba(255,255,255,0.07); }
.lang-menu a.active { color: var(--yellow); font-weight: 700; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0;
  background: var(--black-2); border-top: 2px solid var(--yellow);
  padding: 1.5rem; z-index: 999; box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-weight: 600; font-size: 1rem; color: rgba(255,255,255,0.85); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--black); padding-top: var(--navbar-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1800&q=80');
  background-size: cover; background-position: center; opacity: 0.18;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,17,17,0.95) 45%, rgba(17,17,17,0.7)); }

/* Yellow diagonal stripe accent */
.hero-stripe {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(245,200,0,0.04) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,200,0,0.12); border: 1px solid rgba(245,200,0,0.35);
  color: var(--yellow); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text h1 .highlight { color: var(--yellow); }
.hero-text p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 2rem; max-width: 480px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: left; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* Quote form */
.hero-form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5); border-top: 4px solid var(--yellow); }
.hero-form-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.2rem; }
.hero-form-card > p { font-size: 0.82rem; margin-bottom: 1.5rem; color: var(--gray); }
.form-group { margin-bottom: 0.85rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.72rem 1rem; border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 75px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .checkmark { font-size: 3rem; margin-bottom: 1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--black); }
.bg-yellow { background: var(--yellow); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border: 1px solid rgba(0,0,0,0.06); border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--yellow); }
.service-img { height: 200px; object-fit: cover; width: 100%; }
.service-body { padding: 1.5rem; }
.service-icon { width: 46px; height: 46px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; font-size: 1.3rem; }
.service-body h3 { color: var(--text); margin-bottom: 0.5rem; }
.service-body p { font-size: 0.88rem; }
.service-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--yellow-dark); font-size: 0.86rem; font-weight: 700; margin-top: 0.9rem; transition: gap var(--transition); }
.service-link:hover { gap: 0.6rem; }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.ba-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.ba-item img { width: 100%; height: 260px; object-fit: cover; }
.ba-label { position: absolute; top: 1rem; left: 1rem; background: var(--yellow); color: var(--black); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 50px; }
.ba-label.after { background: var(--black); color: var(--yellow); }

/* ── TRUST BADGES ── */
.badges-row { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; margin-top: 3rem; }
.badge-item { display: flex; align-items: center; gap: 0.75rem; background: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); font-size: 0.88rem; font-weight: 700; border-left: 4px solid var(--yellow); }
.badge-icon { font-size: 1.7rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--black-2); border-radius: var(--radius); padding: 2rem; border-top: 4px solid var(--yellow); }
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.92rem; font-style: italic; color: rgba(255,255,255,0.72); margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.author-location { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.2rem 0; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.02em; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--yellow-dark); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--text-light); font-size: 0.93rem; }
.faq-item.open .faq-answer { display: block; }

/* ── PORTFOLIO ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.25rem; border: 2px solid var(--gray-light); border-radius: 4px; background: transparent; font-family: var(--font-body); font-size: 0.86rem; font-weight: 700; color: var(--text-light); cursor: pointer; transition: all var(--transition); letter-spacing: 0.04em; }
.filter-btn:hover, .filter-btn.active { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.portfolio-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 1.25rem; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { color: white; font-weight: 700; font-size: 0.9rem; }
.portfolio-cat { font-size: 0.7rem; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; }
.portfolio-item.hidden { display: none; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img-badge { position: absolute; bottom: 1.5rem; right: -1rem; background: var(--yellow); color: var(--black); padding: 1.25rem 1.5rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); }
.about-img-badge .num { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; }
.about-img-badge .lbl { font-size: 0.72rem; font-weight: 700; }

.certifications { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.cert-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border: 2px solid var(--gray-light); border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 700; color: var(--text); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--yellow); }
.team-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--text); letter-spacing: 0.04em; }
.team-role { font-size: 0.8rem; color: var(--yellow-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); border-bottom: 3px solid transparent; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-bottom-color: var(--yellow); }
.blog-card-img { height: 195px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.blog-card-body p { font-size: 0.87rem; margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.76rem; color: var(--gray); }

/* ── BLOG POST ── */
.blog-post-hero { background: var(--black); padding: calc(var(--navbar-h) + 4rem) 1.5rem 4rem; text-align: center; color: white; border-bottom: 3px solid var(--yellow); }
.blog-post-hero h1 { color: var(--white); max-width: 820px; margin: 1rem auto; }
.blog-post-meta { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 1rem; }
.blog-post-content { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem; }
.blog-post-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; color: var(--text); }
.blog-post-content h3 { font-size: 1.2rem; margin: 1.75rem 0 0.75rem; color: var(--text); }
.blog-post-content p { margin-bottom: 1.25rem; color: var(--text-light); line-height: 1.8; }
.blog-post-content ul, .blog-post-content ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-light); }
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content a { color: var(--yellow-dark); font-weight: 600; }
.blog-post-content img { border-radius: var(--radius); margin: 2rem 0; width: 100%; }
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table th { background: var(--black); color: var(--yellow); padding: 0.75rem 1rem; text-align: left; font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.04em; }
.price-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; color: var(--text-light); }
.price-table tr:nth-child(even) td { background: var(--off-white); }
.price-table .hl td { color: var(--text); font-weight: 700; }

.blog-cta-box { background: var(--black); color: white; border-radius: var(--radius); padding: 2rem; text-align: center; margin: 3rem 0; border: 2px solid var(--yellow); }
.blog-cta-box h3 { color: var(--yellow); font-size: 1.5rem; margin-bottom: 0.5rem; }
.blog-cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.blog-related { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--gray-light); }
.blog-related h3 { margin-bottom: 1.5rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 46px; height: 46px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.contact-item-value { font-weight: 700; color: var(--text); font-size: 0.93rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 2rem; box-shadow: var(--shadow); border: 2px solid var(--yellow); }
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-lg); border-top: 4px solid var(--yellow); }
.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 0.35rem; }
.contact-form-card > p { font-size: 0.87rem; margin-bottom: 2rem; }

/* ── WHATSAPP ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform var(--transition), box-shadow var(--transition); animation: wa-pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); } }

/* ── CTA ── */
.cta-section { background: var(--yellow); padding: 5rem 1.5rem; text-align: center; }
.cta-section h2 { color: var(--black); margin-bottom: 1rem; }
.cta-section p { color: rgba(17,17,17,0.7); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 4rem 1.5rem 2rem; border-top: 2px solid rgba(245,200,0,0.3); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.86rem; margin-top: 0.75rem; line-height: 1.7; }
.footer-col h4 { color: var(--yellow); font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--yellow); }

/* ── PAGE HERO ── */
.page-hero { background: var(--black); padding: calc(var(--navbar-h) + 4rem) 1.5rem 4rem; text-align: center; color: white; border-bottom: 3px solid var(--yellow); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px; background: rgba(245,200,0,0.03); border-radius: 50%; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-bottom: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── SERVICE DETAIL ── */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; border-bottom: 1px solid var(--gray-light); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius); overflow: hidden; }
.service-detail-img img { width: 100%; height: 360px; object-fit: cover; }
.service-detail-list { margin: 1.25rem 0; }
.service-detail-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.45rem 0; font-size: 0.9rem; color: var(--text-light); }
.service-detail-list li::before { content: '✓'; color: var(--yellow-dark); font-weight: 800; flex-shrink: 0; margin-top: 0.1rem; }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-badge { right: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .section { padding: 3.5rem 1rem; }
  .wa-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
}
