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

/* NAVIGATION */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #0f172a;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #64748b;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  color:#1f2937;
  background:#ffffff;
  line-height:1.8;
}

.container{
  width:88%;
  max-width:1240px;
  margin:auto;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  border-bottom:1px solid rgba(226,232,240,0.7);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

header.scrolled{
  background:rgba(255,255,255,0.88);

  box-shadow:
    0 10px 30px rgba(15,23,42,0.06);

  border-bottom:1px solid rgba(226,232,240,0.9);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
}

.logo{
  font-family:'Playfair Display', serif;
  font-size:24px;
  color:#0f172a;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  text-decoration:none;
  color:#374151;
  font-size:15px;
  transition:0.3s;
}

nav a:hover{
  color:#0f172a;
  opacity:0.7;
}

/* HERO */

.hero{
  padding:180px 0 140px;
  background:
    linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.hero-content{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:90px;
  align-items:center;
}

.hero-text{
  position:relative;
  padding-left:40px;
  max-width:640px;
}

.hero-line{
  position:absolute;
  left:0;
  top:10px;
  width:2px;
  height:120px;
  background:#cbd5e1;
}

.small-heading{
  display:inline-block;
  margin-bottom:20px;
  color:#64748b;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:72px;
  line-height:1.05;
  letter-spacing:-2px;
  margin:24px 0;
  color:#0f172a;
}

.hero p{
  font-size:19px;
  color:#475569;
  margin-bottom:32px;
  max-width:580px;
}

.hero-image img{
  width:100%;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(15,23,42,0.10);
  object-fit:cover;
  aspect-ratio:4 / 5;

  filter:
    saturate(0.94)
    contrast(1.03);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.hero-image img:hover{
  transform:translateY(-6px);
  box-shadow:0 40px 100px rgba(15,23,42,0.14);
}

.button{
  display:inline-block;
  background:#0f172a;
  color:white;
  padding:16px 32px;
  text-decoration:none;
  border-radius:12px;
  transition:0.3s;
  font-size:15px;
}

.button:hover{
  background:#1e293b;
  transform:translateY(-2px);
}

h2{
  font-family:'Playfair Display', serif;
  font-size:52px;
  line-height:1.1;
  letter-spacing:-1.5px;
  color:#0f172a;
  margin-bottom:28px;
}

/* SERVICES */

.services{
  padding:120px 0;
  background:#ffffff;
}

.services h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:60px;
  color:#0f172a;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.card{
  background:#ffffff;
  padding:40px;
  border-radius:24px;
  border:1px solid #e2e8f0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  text-decoration:none;
  color:inherit;
  display:block;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      135deg,
      rgba(15,23,42,0.02),
      transparent 60%
    );
  opacity:0;
  transition:0.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  border-color:#cbd5e1;
  box-shadow:
    0 20px 50px rgba(15,23,42,0.08);
}

.card:hover::before{
  opacity:1;
}

.card:hover h3{
    color:#020617;
}

.card:hover p{
    color:#334155;
}

.card h3{
  font-family:'Playfair Display', serif;
  font-size:24px;
  margin-bottom:16px;
  color:#0f172a;
}

.card p{
  color:#64748b;
  line-height:1.85;
}

/* ABOUT */

.about{
  padding:120px 0;
  background:#ffffff;
}

.about-grid{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:80px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:12px;
}

.about h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:30px;
  color:#0f172a;
}

.about p{
  margin-bottom:20px;
  color:#475569;
}

/* FAQ */

.faq{
  padding:120px 0;
  background:#f1f5f9;
}

.faq h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:50px;
  color:#0f172a;
}

.faq-item{
  background:white;
  border:1px solid #e5e7eb;
  padding:32px;
  margin-bottom:20px;
  border-radius:10px;
}

.faq-item h3{
  margin-bottom:12px;
  color:#0f172a;
}

/* CONTACT */

.contact{
  padding:120px 0;
  background:#f8fafc;
}

.contact h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:30px;
  color:#0f172a;
}

.contact p{
  margin-bottom:20px;
  color:#475569;
}

/* FORM */

form{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:600px;
}

input,
textarea{
  width:100%;
  padding:18px 20px;
  border:1px solid #dbe2ea;
  border-radius:14px;
  font-size:16px;
  font-family:'Inter', sans-serif;
  background:#ffffff;
  color:#0f172a;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

input::placeholder,
textarea::placeholder{
  color:#94a3b8;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#0f172a;
  box-shadow:0 0 0 4px rgba(15, 23, 42, 0.08);
}

textarea{
  min-height:160px;
  resize:vertical;
}

form button{
  background:#0f172a;
  color:white;
  border:none;
  padding:16px 30px;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
  font-size:15px;
  font-weight:500;
}

form button:hover{
  background:#1e293b;
  transform:translateY(-2px);
}

button:hover{
  background:#1e293b;
}

/* LEGAL PAGE */

.legal-page{
    padding:140px 0 100px;
    background:#f8fafc;
    min-height:100vh;
}

.legal-page h1{
    font-family:'Playfair Display', serif;
    font-size:48px;
    color:#0f172a;
    margin-bottom:40px;
}

.legal-page h2{
    font-size:28px;
    color:#0f172a;
    margin-top:50px;
    margin-bottom:20px;
}

.legal-page p,
.legal-page li{
    font-size:18px;
    line-height:1.8;
    color:#475569;
}

.legal-page ul{
    padding-left:24px;
}

.legal-page a{
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
}

/* FOOTER */

footer{
  border-top:1px solid #e5e7eb;
  padding:50px 0;
  margin-top:80px;
  background:#ffffff;
}

footer .container{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}

footer p{
  color:#64748b;
  margin:0;
  font-size:14px;
}

footer a{
  color:#0f172a;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}

footer a:hover{
  color:#475569;
}

/* MOBILE */

@media(max-width:900px){

  .hero-content{
    grid-template-columns:1fr;
  }

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

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

  nav{
    display:none;
  }

  .hero h1{
    font-size:42px;
  }

  .hero{
  padding:140px 0 90px;
}

.hero-content{
  gap:50px;
}

.hero-text{
  padding-left:24px;
}

.hero-line{
  height:90px;
}

.hero-buttons{
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}

.btn-secondary{
  margin-left:0;
}

h2{
  font-size:38px;
}

.services h2,
.about h2,
.faq h2,
.contact h2,
.cta h2{
  font-size:36px;
}

.card,
.service-card,
.dark-info-card{
  padding:28px;
}

.premium-cta-box{
  padding:42px 28px;
}

.premium-cta-box h2{
  font-size:34px;
}

footer{
  padding:40px 0;
}

}

/* ANIMATIONS */

.card,
.about,
.faq-item,
.contact,
.cta{
  opacity:1;
  transform:none;;
  transition:all 1s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}

/* HERO IMAGE EFFECT */

.hero-image img{
  transition:transform 0.6s ease;
}

.hero-image img:hover{
  transform:scale(1.02);
}

/* FAQ ACCORDION */

.faq-question{
  width:100%;
  background:transparent;
  border:none;
  text-align:left;
  font-size:18px;
  font-weight:600;
  padding:0;
  cursor:pointer;
  color:#0f172a;
  font-family:'Inter', sans-serif;
  appearance:none;
  -webkit-appearance:none;
  outline:none;
  box-shadow:none;
  transition:0.3s;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-question:hover{
  color:#334155;
  background:transparent;
}

.faq-question:focus{
  outline:none;
  background:transparent;
  box-shadow:none;
}

.faq-question:active{
  background:transparent;
}

.faq-icon{
  font-size:1.2rem;
  transition:transform 0.3s ease;
  color:#0f172a;
  flex-shrink:0;
  margin-left:20px;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.faq-answer p{
  margin-top:18px;
  color:#475569;
}

.faq-item.active .faq-answer{
  max-height:200px;
  opacity:1;
}

.faq-item.active .faq-icon{
  transform:rotate(90deg);
}

/* MAP */

.map-wrapper{
  margin-top:60px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}

.map-wrapper iframe{
  display:block;
  width:100%;
  height:420px;
}

/* CTA */

.cta{
  padding:120px 0;
  background:#0f172a;
  color:white;
}

.cta-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.cta h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  line-height:1.2;
  margin-top:18px;
  max-width:700px;
}

.cta .small-heading{
  color:#94a3b8;
}

.section-tag{
  display:inline-block;
  margin-bottom:18px;
  color:#64748b;
  font-size:13px;
  font-weight:600;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

.cta .button{
  background:white;
  color:#0f172a;
}

.cta .button:hover{
  background:#e2e8f0;
}

@media(max-width:900px){

  .cta-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta h2{
    font-size:38px;
  }

}

/* FLOATING CONTACT */

.floating-contact{
  position:fixed;
  right:30px;
  bottom:30px;
  z-index:9999;
}

.floating-toggle{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#0f172a;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  box-shadow:
    0 10px 30px rgba(15,23,42,0.18);
  transition:0.3s;
}

.floating-contact:hover .floating-toggle{
  transform:translateY(-3px);
  background:#1e293b;
}

.floating-menu{
  position:absolute;
  bottom:72px;
  right:0;
  background:white;
  border-radius:14px;
  padding:10px;
  min-width:160px;
  box-shadow:
    0 20px 50px rgba(15,23,42,0.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s;
  border:1px solid #e5e7eb;
}

.floating-contact:hover .floating-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.floating-menu a{
  display:block;
  padding:12px 14px;
  color:#0f172a;
  text-decoration:none;
  border-radius:8px;
  transition:0.3s;
  font-size:15px;
}

.floating-menu a:hover{
  background:#f8fafc;
}

@media(max-width:768px){

  .floating-contact{
    right:20px;
    bottom:20px;
  }

}

.hero-buttons {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:16px 30px;
  border-radius:14px;

  background:#0f172a;
  color:#ffffff;

  text-decoration:none;
  font-weight:500;
  font-size:15px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;

  box-shadow:
    0 10px 25px rgba(15,23,42,0.10);
}

.btn:hover{
  background:#1e293b;

  transform:
    translateY(-3px);

  box-shadow:
    0 18px 40px rgba(15,23,42,0.16);
}

.btn-primary {
    background: #0f172a;
    color: white;
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #0f172a;
    color: #0f172a;
    margin-left: 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #0f172a;
    color: #0f172a;
    transform: translateY(-2px);
}

.small-hero {
    padding: 140px 0 90px;
}

.small-hero h1{
    max-width:700px;
    margin-top:18px;
    line-height:1.05;
}

.hero-text{
    max-width:720px;
    font-size:20px;
    line-height:1.8;
    margin-top:30px;
    color:#475569;
}

.hero-text{
    max-width:700px;
    font-size:18px;
    line-height:1.8;
    margin-top:24px;
}

.content-section{
    padding:40px 0 100px;
}

.narrow{
    max-width:760px;
}

.content-section h2{
    font-size:42px;
    line-height:1.15;
    margin-bottom:26px;
    margin-top:80px;
    color:#0f172a;
    letter-spacing:-1px;
}

.content-section p{
    margin-bottom:28px;
    line-height:1.95;
    color:#475569;
    font-size:18px;
}

.seo-list{
    margin:40px 0;
    padding-left:0;
    list-style:none;
}

.seo-list li{
    margin-bottom:18px;
    color:#334155;
    padding:18px 22px;
    background:#f8fafc;
    border-radius:12px;
    border:1px solid rgba(15,23,42,0.05);
    font-size:17px;
}

.cta-box{
    background:#0f172a;
    padding:56px;
    border-radius:24px;
    margin-top:80px;
    color:white;
}

.cta-box h3{
    color:white;
    font-size:36px;
    margin-bottom:18px;
}

.cta-box p{
    color:rgba(255,255,255,0.75);
    margin-bottom:32px;
}

.cta-box .btn{
    background:white;
    color:#0f172a;
}

.cta-box .btn:hover{
    background:#e2e8f0;
}

.dark-info-section {
    background: #0f172a;
    padding: 70px 0;
}

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

.dark-info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 32px;
}

.dark-info-card h3 {
    color: white;
    margin-bottom: 14px;
    font-size: 22px;
}

.dark-info-card p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.services-overview {
    padding: 110px 0;
    background: #f8fafc;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
    margin-top: 12px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.08);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    line-height: 1.8;
}

.premium-cta {
    padding: 100px 0 120px;
}

.premium-cta-box {
    background: #0f172a;
    color: white;
    border-radius: 20px;
    padding: 70px;
    text-align: center;
}

.premium-cta-box h2 {
    font-size: 42px;
    margin: 18px 0;
    line-height: 1.2;
}

.premium-cta-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
}

.btn-light {
    background: white;
    color: #0f172a;
}

.btn-light:hover {
    background: #e2e8f0;
}

.card-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    transition: transform 0.3s ease;
}

.card:hover .card-link {
    transform: translateX(6px);
}

/* REVEAL ANIMATIONS */

.reveal{
  opacity:1;
  transform:none;
}

.reveal.active{
  opacity:1;
  transform:none;
}

.lang-switch img{
  width:20px;
  height:auto;
  border-radius:2px;
  transition:0.3s ease;
}

.lang-switch img:hover{
  opacity:0.75;
  transform:translateY(-1px);
}