/* =============================================
   Unique Enterprises — Modern Construction Site
   ============================================= */

:root {
  --color-primary: #c8791a;
  --color-primary-dark: #a66312;
  --color-primary-light: #f4e4cc;
  --color-dark: #1a2332;
  --color-dark-soft: #2a3544;
  --color-text: #3d4a5c;
  --color-text-light: #6b7a8d;
  --color-bg: #f8f9fb;
  --color-white: #ffffff;
  --color-border: #e2e8f0;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 35, 50, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo--full {
  flex-shrink: 1;
  min-width: 0;
  max-width: 220px;
  overflow: hidden;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

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

/* ---- Section shared ---- */
.section {
  padding: 100px 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header--light h2,
.section-header--light p {
  color: var(--color-white);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-tag--light {
  color: var(--color-primary-light);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-dark);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
}

.logo__text {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-dark);
}

.logo--footer .logo__text {
  color: var(--color-white);
}

.logo--footer .logo__img {
  background: var(--color-white);
  padding: 6px;
  border-radius: 8px;
  box-sizing: content-box;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.nav a:hover {
  color: var(--color-primary);
}

.nav__cta {
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: 8px;
}

.nav__cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(26, 35, 50, 0.75) 100%),
    url("../images/hero/hero-home.png") center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--color-primary);
}

.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- About ---- */
.about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about__card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.about__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.about__card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ---- Services ---- */
.services {
  background: var(--color-dark);
}

.services .section-tag {
  color: var(--color-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.service-card {
  background: var(--color-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}

.service-card:hover {
  background: rgba(200, 121, 26, 0.12);
  border-color: rgba(200, 121, 26, 0.3);
  transform: translateY(-3px);
}

.service-card__num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---- Why Us ---- */
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us__content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.why-us__content>p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 17px;
}

.why-us__list {
  list-style: none;
  margin-bottom: 36px;
}

.why-us__list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.why-us__list li:last-child {
  border-bottom: none;
}

.why-us__list strong {
  display: block;
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.why-us__list span {
  font-size: 14px;
  color: var(--color-text-light);
}

.why-us__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us__box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.why-us__box--accent {
  background: var(--color-dark);
  border-color: var(--color-dark);
}

.why-us__box-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.why-us__box p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.5;
}

.why-us__box--accent p {
  color: var(--color-white);
}

/* ---- Portfolio ---- */
.portfolio {
  background: var(--color-bg);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-card__body {
  padding: 24px;
}

.portfolio-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.portfolio-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.portfolio-card__body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.faq__item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---- Contact ---- */
.contact {
  background: var(--color-dark);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.contact__info>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 17px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.contact__item strong,
.contact__item a,
.contact__item address {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.6;
}

.contact__item a:hover {
  color: var(--color-primary);
}

.contact__form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200, 121, 26, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---- Footer ---- */
.footer {
  background: #111820;
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--color-primary);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .page-grid,
  .service-page__grid,
  .contact-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-page__sidebar {
    position: static;
  }

  .services .about__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-contact__inner {
    grid-template-columns: 1fr;
  }

  [class*="__grid"]>* {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 15px;
  }

  .header__inner {
    height: 64px;
  }

  .logo--full {
    max-width: 55%;
  }

  .logo--full .logo__full {
    height: 32px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .nav-toggle-btn {
    display: flex;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }

  .nav>a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 16px;
  }

  .nav>a.nav__cta {
    border-bottom: none;
    margin-top: 12px;
    text-align: center;
    padding: 14px 20px;
  }

  .nav-toggle:checked~.nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked+.nav-toggle-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked+.nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked+.nav-toggle-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Mobile services submenu — always visible when menu is open */
  .nav-dropdown {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-dropdown>a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: none;
  }

  .nav-dropdown>a::after {
    content: "";
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    min-width: 0;
    padding: 0 0 12px 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    border-left: 2px solid var(--color-primary-light);
    margin-left: 4px;
  }

  .nav-dropdown__menu a {
    padding: 10px 0;
    font-size: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    white-space: normal;
  }

  .nav-dropdown__menu a:first-of-type,
  .nav-dropdown__menu a:last-of-type {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-toggle:checked~.nav .nav-dropdown__menu {
    display: block;
  }

  .hero--banner {
    padding-top: 64px;
  }

  .hero__banner-img {
    width: 100%;
    height: auto;
    min-height: 220px;
    object-fit: cover;
    object-position: center top;
  }

  .hero__stats {
    gap: 20px;
  }

  .page-grid,
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-grid__img {
    order: -1;
  }

  .about__grid,
  .services .about__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .services__grid,
  .home-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card__thumb {
    margin: 0 0 12px;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .services-page__grid .service-card {
    padding-bottom: 20px;
    border-radius: var(--radius);
  }

  .services-page__grid .service-card .service-card__num,
  .services-page__grid .service-card h3,
  .services-page__grid .service-card p,
  .services-page__grid .service-card .link-arrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about__card,
  .process__step,
  .portfolio-card,
  .home-contact__cta,
  .contact__form,
  .why-us__box,
  .service-page__sidebar,
  .faq__item,
  .page-grid__img {
    max-width: 100%;
    overflow: hidden;
  }

  .why-us__inner,
  .home-contact__inner,
  .page-grid,
  .service-page__grid,
  .contact-page__grid,
  .contact__inner {
    gap: 28px;
  }

  .home-contact__details address,
  .home-contact__details a,
  .footer__contact a,
  .contact__item address,
  .contact__item a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

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

  .section-header,
  .content-block,
  .why-us__content,
  .home-contact__info {
    max-width: 100%;
  }

  [class*="__grid"]>* {
    min-width: 0;
  }

  .service-page__grid .page-grid__img,
  .service-page__grid .content-block {
    max-width: 100%;
    overflow: hidden;
  }

  .service-page__sidebar {
    padding: 24px 20px;
  }

  .map-placeholder {
    min-height: 0;
  }

  .map-placeholder iframe {
    height: 220px;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .process__step {
    padding: 24px 20px;
  }

  .why-us__box p {
    font-size: 16px;
  }

  .stats-bar {
    padding: 28px 0;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-bar__item strong {
    font-size: 22px;
  }

  .stats-bar__item span {
    font-size: 11px;
  }

  .home-contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-contact__cta {
    padding: 28px 20px;
  }

  .contact__form {
    padding: 24px 20px;
  }

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

  .page-hero {
    padding: 100px 0 48px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-content {
    padding: 48px 0;
  }

  .content-block h2 {
    font-size: 24px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner h2 {
    font-size: 24px;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq__item summary {
    padding: 16px;
    font-size: 15px;
  }

  .faq__item p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .map-placeholder iframe {
    height: 220px;
  }
}

/* =============================================
   Multi-page: inner pages, nav, breadcrumbs
   ============================================= */

.logo__img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.logo--full .logo__full {
  height: 48px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.hero--banner {
  min-height: auto;
  padding: 64px 0 0;
  background: none;
  display: block;
}

.hero__banner-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.hero__banner-link:hover .hero__banner-img {
  opacity: 0.95;
}

.hero__banner-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  transition: opacity var(--transition);
}

.nav a.is-active {
  color: var(--color-primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: " ▾";
  font-size: 11px;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  padding: 12px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: none;
  white-space: nowrap;
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.nav-dropdown__menu a:first-of-type {
  border-top: 1px solid var(--color-border);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.nav-dropdown__menu a:last-of-type {
  border-bottom: 1px solid var(--color-border);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.nav-dropdown__menu a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }
}

.page-hero {
  position: relative;
  padding: 140px 0 72px;
  background: var(--color-dark);
  color: var(--color-white);
}

.page-hero--short {
  padding-bottom: 56px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.page-content {
  padding: 80px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-grid__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-grid__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.content-block p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.service-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-page__sidebar {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 96px;
}

.service-page__sidebar h3 {
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.service-page__sidebar ul {
  list-style: none;
}

.service-page__sidebar li {
  margin-bottom: 8px;
}

.service-page__sidebar a {
  font-size: 15px;
  color: var(--color-text);
}

.service-page__sidebar a:hover {
  color: var(--color-primary);
}

.cta-banner {
  background: var(--color-dark);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  font-size: 17px;
}

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

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.service-card__thumb {
  height: 180px;
  overflow: hidden;
  margin: 0 0 16px;
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-page__grid .service-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  padding: 0 0 24px;
}

.services-page__grid .service-card:hover h3 {
  color: var(--color-primary);
}

.services-page__grid .service-card .service-card__num,
.services-page__grid .service-card h3,
.services-page__grid .service-card p,
.services-page__grid .service-card .link-arrow {
  padding-left: 20px;
  padding-right: 20px;
}

.services-page__grid .service-card .service-card__num {
  display: block;
  padding-top: 4px;
}

.services-page__grid .service-card h3 {
  color: var(--color-dark);
  margin-bottom: 8px;
}

.services-page__grid .service-card p {
  color: var(--color-text-light);
}

.services-page__grid .service-card .link-arrow {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.link-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.link-arrow:hover {
  text-decoration: underline;
}

.contact-page__grid .contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--color-dark);
  margin-bottom: 16px;
}

.contact-page__grid .contact__info>p {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.contact-page__grid .contact__label {
  color: var(--color-primary);
}

.contact-page__grid .contact__item strong,
.contact-page__grid .contact__item a,
.contact-page__grid .contact__item address,
.contact-page__grid .contact__item p {
  color: var(--color-dark);
}

.portfolio-card__body h2,
.portfolio-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.faq__item a {
  color: var(--color-primary);
  font-weight: 500;
}

.faq__item a:hover {
  text-decoration: underline;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.map-placeholder {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--color-text-light);
}

.map-placeholder iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =============================================
   Homepage expanded sections
   ============================================= */

.stats-bar {
  background: var(--color-dark);
  padding: 40px 0;
  border-bottom: 3px solid var(--color-primary);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 769px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.stats-bar__item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-services {
  background: var(--color-bg);
}

.home-services__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .home-services__grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  }
}

.process {
  background: var(--color-white);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.process__step {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process__step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.process__step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.65;
}

.home-contact {
  background: var(--color-bg);
}

.home-contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.home-contact__info>p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 17px;
}

.home-contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-contact__details span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.home-contact__details a,
.home-contact__details address {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.6;
}

.home-contact__details a:hover {
  color: var(--color-primary);
}

.home-contact__cta {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.home-contact__cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.home-contact__cta p {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 15px;
}

.home-contact__cta .btn {
  margin-bottom: 12px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0;
  }

  .logo--full .logo__full {
    height: 28px;
    max-width: 140px;
  }

  .stats-bar__item strong {
    font-size: 20px;
  }

  .stats-bar__item span {
    font-size: 10px;
  }

  .about__card {
    padding: 24px 20px;
  }

  .portfolio-card__img img {
    height: 180px;
  }

  .service-card__thumb {
    aspect-ratio: 16 / 9;
  }

  .home-contact__cta {
    padding: 24px 16px;
  }
}