:root {
  --black: #111111;
  --text: #171717;
  --muted: #666666;
  --soft: #f5f5f2;
  --white: #ffffff;
  --gold: #c9a24d;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 24px 70px rgba(0,0,0,0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 9999;
}

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.header.scrolled {
  top: 10px;
  padding: 10px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
}

.logo-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.logo strong {
  display: block;
  font-size: 18px;
  letter-spacing: 1px;
}

.logo span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--black);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.menu-btn {
  display: none;
  border: none;
  background: var(--black);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 24px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 8% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: 1.2s ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(8,15,30,0.72) 0%,
    rgba(8,15,30,0.48) 38%,
    rgba(8,15,30,0.20) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -4px;
  margin: 0 0 28px;
  color: var(--black);
}

.hero p {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 34px;
}

.hero-buttons .primary {
  background: #ffffff;
  color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.35);
}

.hero-buttons .primary:hover {
  background: #c9a24d;
  color: #111111 !important;
}

.hero-buttons .secondary {
  background: rgba(255,255,255,0.92);
  color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 25px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--black);
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.secondary {
  background: white;
  color: var(--black);
  border: 1px solid var(--border);
}

.whatsapp {
  background: #21c063;
  color: white;
}

.hero-card {
  position: absolute;
  right: 8%;
  bottom: 80px;
  z-index: 2;
  width: 280px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-card span {
  color: var(--muted);
  line-height: 1.6;
}

.feature-strip {
  max-width: 1180px;
  margin: -42px auto 0;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}

.feature-strip div {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  color: #111111;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.feature-strip div:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

@media (max-width: 850px) {
  .feature-strip {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }
}

.section {
  padding: 110px 8%;
}

.soft {
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 18px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.about-grid {
  max-width: 900px;
  margin: auto;
  display: block;
}

.about-image img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-text {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.about-text h3 {
  font-size: 34px;
  margin: 0 0 18px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stats div {
  background: var(--soft);
  border-radius: 22px;
  padding: 20px;
}

.stats strong {
  font-size: 32px;
  display: block;
}

.stats span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.service-grid,
.process-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  .services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;
}
}

.service-card{

    background:#ffffff;

    border-radius:34px;

    padding:42px 36px;

    min-height:320px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    text-decoration:none;

    color:#111111;

    transition:0.4s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.06);
}

.service-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.10);
}

.service-card span{

    color:#c9a24d;

    font-weight:700;

    font-size:30px;

    margin-bottom:22px;
}

.service-card h3{

    font-size:22px;

    line-height:1.3;

    margin-bottom:18px;
}

.service-card p{

    line-height:1.8;

    color:#666666;
}
.service-card:hover,
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-card span,
.process-card b {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.service-card h3,
.process-card h3 {
  font-size: 22px;
  margin: 20px 0 14px;
}

.service-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.8;
}

.project-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card div {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  color: var(--black);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.cta-section {
  margin: 0 8%;
  padding: 70px 30px;
  border-radius: 40px;
  text-align: center;
  background: var(--black);
  color: white;
}

.cta-section h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 0 0 16px;
}

.cta-section p {
  color: #d4d4d4;
  margin-bottom: 28px;
}

.cta-section .primary {
  background: white;
  color: var(--black);
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-info,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 30px;
  margin-top: 0;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 17px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  border: none;
  background: var(--black);
  color: white;
  padding: 17px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
}

footer {
  padding: 42px 8%;
  background: var(--black);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer p {
  color: #cfcfcf;
  margin: 6px 0 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #21c063;
  color: white;
  display: grid;
  place-items: center;
  font-size: 27px;
  z-index: 900;
  box-shadow: 0 18px 40px rgba(33,192,99,0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }
}

@media (max-width: 850px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav.active {
    display: flex;
    position: fixed;
    top: 92px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.active a {
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    padding: 140px 6% 70px;
  }

  .hero-overlay {
    background: rgba(255,255,255,0.88);
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 76px 6%;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .service-grid,
  .process-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 340px;
  }

  .about-text,
  .contact-info,
  .contact-form {
    padding: 26px;
    border-radius: 26px;
  }

  footer {
    text-align: center;
    justify-content: center;
  }
}
.hero-content,
.hero-content * {
  opacity: 1 !important;
  visibility: visible !important;
  color: #111111 !important;
  z-index: 50 !important;
}

.hero-content {
  position: relative !important;
  display: block !important;
}

.hero-overlay {
  z-index: 1 !important;
}

.hero-bg {
  z-index: 0 !important;
}
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.site-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.map-box{
    width:100%;
    height:450px;

    overflow:hidden;

    border-radius:32px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10);

    border:
    1px solid rgba(0,0,0,0.06);

    margin-top:20px;
}

.map-box iframe{
    width:100%;
    height:100%;
}
.hero-title{
    color:#ffffff;
}
.hero-text{
    color:rgba(255,255,255,0.82);
}
.hero-eyebrow{
    color:#ffffff;
    letter-spacing:4px;
}
.hero h1{
    color:#ffffff !important;
}

.hero p{
    color:rgba(255,255,255,0.85) !important;
}

.hero .eyebrow{
    color:#ffffff !important;
}

.hero-content h1{
    color:#ffffff !important;
}

.hero-content p{
    color:rgba(255,255,255,0.85) !important;
}
.projects-page{
    padding:120px 20px;
    background:#ffffff;
}

.gallery-grid{

    max-width:1300px;

    margin:60px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.gallery-grid img{

    width:100%;

    height:340px;

    object-fit:cover;

    border-radius:28px;

    display:block;

    transition:0.5s ease;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}

.gallery-grid img:hover{

    transform:
    scale(1.03);

    box-shadow:
    0 28px 65px rgba(0,0,0,0.18);
}

@media(max-width:950px){

.gallery-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:650px){

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-grid img{
height:260px;
}

}
.projects-page .header {
  left: 50%;
  transform: translateX(-50%);
}

.projects-page-header,
.header .nav {
  margin: 0 auto;
}
.site-footer{

    background:#0f1720;

    padding:90px 20px 26px;

    color:#ffffff;

    margin-top:120px;
}

.footer-top{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.2fr
    1fr
    1fr
    1fr;

    gap:50px;
}

.footer-logo{
    width:110px;
    margin-bottom:22px;
}

.footer-box h3{

    font-size:20px;

    margin-bottom:22px;

    color:#ffffff;
}

.footer-box p,
.footer-box span,
.footer-box a{

    display:block;

    color:rgba(255,255,255,0.72);

    text-decoration:none;

    line-height:1.9;

    margin-bottom:10px;

    transition:0.3s;
}

.footer-box a:hover{
    color:#ffffff;
}

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,0.08);

    margin-top:60px;

    padding-top:26px;

    text-align:center;
}

.footer-bottom p{

    color:rgba(255,255,255,0.62);

    margin:0;
}

@media(max-width:950px){

.footer-top{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:650px){

.footer-top{
grid-template-columns:1fr;
}

.site-footer{
text-align:center;
}

.footer-logo{
margin:auto auto 20px;
}

}
.projects-more{

    margin-top:46px;

    text-align:center;
}

.projects-more-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 38px;

    border-radius:18px;

    background:#111111;

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    font-size:15px;

    transition:0.3s ease;

    box-shadow:
    0 16px 40px rgba(0,0,0,0.12);
}

.projects-more-btn:hover{

    transform:translateY(-4px);

    background:#c9a24d;

    color:#111111;
}
.service-card {
  text-decoration: none;
  color: inherit;
}
.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 50px 0;
}

.service-info-grid div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.06);
}

.service-info-grid h3 {
  margin-top: 0;
  font-size: 20px;
}

.service-info-grid p {
  margin-bottom: 0;
}

.service-cta {
  margin-top: 60px;
  padding: 48px;
  border-radius: 34px;
  background: #111111;
  color: white;
  text-align: center;
}

.service-cta h2 {
  color: white;
  margin-top: 0;
}

.service-cta .primary {
  background: white;
  color: #111111;
}

@media(max-width: 850px) {
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .service-cta {
    padding: 32px 22px;
  }
}
.service-page {
  padding: 170px 20px 90px !important;
  background: linear-gradient(180deg, #f7f7f4, #ffffff);
}

.service-hero {
  position: relative;
  max-width: 1300px;
  height: 520px;
  margin: 0 auto 70px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.38),
    rgba(0,0,0,0.10)
  );
}

.service-overlay {
  position: absolute;
  left: 55px;
  bottom: 55px;
  z-index: 2;
  max-width: 760px;
  color: white;
}

.service-overlay span {
  display: inline-block;
  color: #c9a24d;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.service-overlay h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  margin: 0 0 18px;
  letter-spacing: -3px;
  color: white;
}

.service-overlay p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

.service-content {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 38px;
  padding: 55px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.08);
}

.service-content h2 {
  font-size: 42px;
  margin: 0 0 24px;
}

.service-content p {
  color: #555;
  line-height: 2;
  font-size: 17px;
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 50px 0;
}

.service-info-grid div {
  background: #f7f7f4;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.06);
}

.service-cta {
  margin-top: 55px;
  padding: 54px 30px;
  border-radius: 34px;
  background: #111;
  color: white;
  text-align: center;
}

.service-cta h2 {
  color: white;
}

.service-cta .btn {
  background: white;
  color: #111;
}

@media(max-width: 850px) {
  .service-page {
    padding-top: 130px !important;
  }

  .service-hero {
    height: 380px;
    border-radius: 28px;
  }

  .service-overlay {
    left: 28px;
    bottom: 28px;
  }

  .service-content {
    padding: 30px;
    border-radius: 28px;
  }

  .service-info-grid {
    grid-template-columns: 1fr;
  }
}
.service-dropdown,
.project-dropdown {
  max-width: 1180px;
  margin: 40px auto 0;
}

.dropdown-select {
  width: 100%;
  padding: 22px 26px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  font-size: 18px;
  font-weight: 800;
  color: #111;
  box-shadow: 0 16px 45px rgba(0,0,0,0.08);
  outline: none;
  cursor: pointer;
}
.dropdown{
    position:relative;
}

.dropdown-menu{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    min-width:300px;

    background:#ffffff;

    border-radius:24px;

    padding:14px;

    box-shadow:
    0 24px 70px rgba(0,0,0,0.14);

    border:
    1px solid rgba(0,0,0,0.06);

    opacity:0;

    visibility:hidden;

    transition:0.3s ease;

    z-index:999;
}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    top:120%;
}

.dropdown-menu a{

    display:block;

    padding:16px 18px;

    border-radius:16px;

    color:#111111;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;
}

.dropdown-menu a:hover{

    background:#f5f5f5;

    color:#c9a24d;
}
.service-hero{

    position:relative !important;

    max-width:1300px !important;

    height:520px !important;

    margin:0 auto 70px !important;

    border-radius:42px !important;

    overflow:hidden !important;
}

.service-hero img{

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    display:block !important;
}
.whatsapp-btn{

    position:fixed;

    right:24px;

    bottom:24px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    box-shadow:
    0 18px 40px rgba(0,0,0,0.18);
}

.whatsapp-btn img{

    width:34px;

    height:34px;

    object-fit:contain;
}.whatsapp-btn{

    position:fixed;

    right:24px;

    bottom:24px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    box-shadow:
    0 18px 40px rgba(0,0,0,0.18);
}

.whatsapp-btn img{

    width:34px;

    height:34px;

    object-fit:contain;
}
.contact-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:18px;

    background:#25D366;

    color:#ffffff;

    font-weight:700;

    text-decoration:none;

    margin-top:10px;

    transition:0.3s;
}

.contact-whatsapp:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 16px 35px rgba(37,211,102,0.35);
}
.contact-call{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    border-radius:18px;

    background:#111111;

    color:#ffffff;

    font-weight:700;

    text-decoration:none;

    margin-top:14px;

    transition:0.3s;
}

.contact-call:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 16px 35px rgba(0,0,0,0.22);
}
@media(max-width:768px){

.hero::before{

    background:
    linear-gradient(
    to right,
    rgba(255,255,255,0.72),
    rgba(255,255,255,0.35)
    ) !important;
}

.hero-content{

    padding-top:140px !important;

    position:relative !important;

    z-index:5 !important;
}

.hero-content h1{

    font-size:58px !important;

    line-height:0.95 !important;

    color:#ffffff !important;

    margin-bottom:26px !important;
}

.hero-content p{

    color:#ffffff !important;

    font-size:18px !important;

    line-height:1.8 !important;

    margin-bottom:34px !important;
}

.hero-buttons{

    display:flex !important;

    flex-direction:column !important;

    gap:18px !important;

    align-items:flex-start !important;
}

.hero-buttons .btn{

    width:240px !important;

    justify-content:center !important;
}
}
@media(max-width:768px){

.hero::before,
.hero-overlay,
.banner-overlay{

    opacity:0.45 !important;

    background:
    linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
    ) !important;
}
}
@media(max-width:768px){

  .menu-btn{
    display:flex !important;
    align-items:center;
    justify-content:center;
  }

  .nav{
    position:fixed !important;
    top:0;
    right:-100%;
    width:82%;
    max-width:340px;
    height:100vh;
    background:#fff;
    z-index:9999;
    padding:120px 30px 40px;
    display:flex !important;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    transition:0.35s ease;
    box-shadow:-20px 0 50px rgba(0,0,0,0.18);
  }

  .nav.active{
    right:0;
  }

  .nav a{
    color:#111 !important;
    font-size:20px;
    font-weight:800;
  }

  .dropdown-menu{
    position:static !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
    box-shadow:none !important;
    border:none !important;
    padding:8px 0 0 14px !important;
    display:none;
  }

  .dropdown.active .dropdown-menu{
    display:block !important;
  }

  .nav-cta{
    display:none !important;
  }
}
@media (max-width: 768px) {
  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 7000;
  }

  .nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(320px, 78vw) !important;
    height: 100vh !important;
    background: #ffffff !important;
    z-index: 6000 !important;
    transition: right 0.35s ease !important;
    padding: 95px 26px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.18) !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
  }

  .nav.active {
    right: 0 !important;
  }

  .nav a {
    color: #111111 !important;
    display: block !important;
    padding: 17px 0 !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    border-bottom: 1px solid #e5e7eb !important;
  }

  .dropdown-menu {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 8px 18px !important;
    margin: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .nav-cta {
    display: none !important;
  }

  body.menu-open {
    overflow: hidden !important;
  }
}
@media(max-width:768px){

  .menu-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:52px !important;
    height:52px !important;
    border:none !important;
    border-radius:16px !important;
    background:#111 !important;
    color:white !important;
    font-size:28px !important;
    z-index:99999 !important;
  }

  .nav{
    position:fixed !important;
    top:0 !important;
    right:-100% !important;
    width:min(320px,78vw) !important;
    height:100vh !important;
    background:white !important;
    z-index:9999 !important;
    padding:95px 26px 30px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
    transition:right .35s ease !important;
    box-shadow:-10px 0 30px rgba(0,0,0,.18) !important;
    border-radius:0 !important;
  }

  .nav.active{
    right:0 !important;
  }

  .nav a{
    color:#111 !important;
    padding:17px 0 !important;
    font-size:17px !important;
    font-weight:800 !important;
    border-bottom:1px solid #e5e7eb !important;
  }

  .dropdown-menu{
    position:static !important;
    display:none !important;
    box-shadow:none !important;
    border:none !important;
    background:transparent !important;
    padding:0 0 8px 18px !important;
    transform:none !important;
    opacity:1 !important;
    visibility:visible !important;
  }

  .dropdown.active .dropdown-menu{
    display:block !important;
  }

  .nav-cta{
    display:none !important;
  }

  body.menu-open{
    overflow:hidden !important;
  }
}
@media(max-width:768px){

  header{

    overflow:hidden !important;
  }

  .nav{

    top:0 !important;

    height:100dvh !important;
  }
}
@media(max-width:768px){

  .header,
  header{
    overflow: visible !important;
  }

  .nav{
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;

    width: min(320px, 78vw) !important;
    height: 100vh !important;

    background: #fff !important;
    padding: 95px 26px 30px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    z-index: 99999 !important;
    transition: right .35s ease !important;

    box-shadow: -10px 0 30px rgba(0,0,0,.18) !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
  }

  .nav.active{
    right: 0 !important;
  }

  .menu-btn{
    position: relative !important;
    z-index: 100000 !important;
  }
}
@media(max-width:768px){

  .dropdown-menu{
    display:none !important;
    position:static !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    box-shadow:none !important;
    border:none !important;
    background:#f7f7f4 !important;
    border-radius:16px !important;
    padding:10px 14px !important;
    margin:8px 0 8px !important;
  }

  .dropdown.active .dropdown-menu{
    display:block !important;
  }

  .dropdown-menu a{
    font-size:15px !important;
    padding:12px 0 !important;
    border-bottom:1px solid rgba(0,0,0,0.06) !important;
  }
}
.dropdown-toggle{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:17px 0;
  font-size:14px;
  font-weight:800;
  color:#111;
  font-family:inherit;
  cursor:pointer;
  border-bottom:1px solid #e5e7eb;
}
.site-logo{
  width:120px !important;
  height:auto !important;
  object-fit:contain !important;
}

.header{
  min-height:auto !important;
  padding:22px 42px !important;
}

@media(max-width:768px){
  .site-logo{
    width:92px !important;
  }

  .header{
    padding:18px 24px !important;
  }
}
.hero{
  padding-top:260px !important;
}

@media(max-width:768px){
  .hero{
    padding-top:170px !important;
  }
}
.projects-hero,
.page-hero,
.projeler-hero{
    padding-top:260px !important;
}
@media(max-width:768px){

  .projects-hero,
  .page-hero,
  .projeler-hero{
      padding-top:170px !important;
  }

}
body:not(.home) .projects-page,
body:not(.home) .projects-section,
body:not(.home) section:first-of-type{
  padding-top:260px !important;
}

@media(max-width:768px){
  body:not(.home) .projects-page,
  body:not(.home) .projects-section,
  body:not(.home) section:first-of-type{
    padding-top:170px !important;
  }
}