:root {
  --black: #0b0b0b;
  --gold: #c9a24d;
  --white: #ffffff;
  --gray: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: var(--black);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 80px;
}

.logo-text {
  height: 42px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 25px;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 8px;
  margin-left: 15px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 12px;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-switch button:hover,
.lang-switch button.active {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 10px rgba(201,162,77,.4);
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-gold {
  background: linear-gradient(135deg, #e0bf6a, #c9a24d);
  color: #000;
}

.btn-gold:hover {
  background: #d4b15f;
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.hero {
  position: relative;
  background: #000;
  color: var(--white);
  padding: 140px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/dtologo-1.png") center center no-repeat;
  background-size: 85%;
  opacity: 0.20;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 25px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.hero a,
.hero a:visited {
  color: var(--gold);
  text-decoration: none;
}

.hero a:hover {
  color: var(--white);
}

.hero .btn-gold {
  color: #ffffff !important;
}

.hero .btn-gold:hover {
  color: #ffffff !important;
}

.services {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  padding: 120px 0;
}

.services h2 {
  color: var(--white);
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 45px;
}

.service-card {
  position: relative;
  background: linear-gradient(145deg, #0c0c0c, #000);
  border-radius: 16px;
  padding: 44px 40px;
  border: 1px solid rgba(201,162,77,0.18);
  box-shadow:
    0 30px 60px rgba(0,0,0,.85),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: all .4s ease;
  overflow: hidden;
}

.service-card{
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(201,162,77,0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,162,77,0.45);
  box-shadow:
    0 45px 80px rgba(0,0,0,.95),
    0 0 35px rgba(201,162,77,0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon{
  width: 130px;
  height: 130px;
  margin: 0 auto 22px auto; 

  display: flex;
  align-items: center;
  justify-content: center; 
}

.service-icon img{
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  display: block;

  filter: drop-shadow(0 14px 26px rgba(0,0,0,.65));
  transition: transform .25s ease, filter .25s ease;
}

.service-card:hover .service-icon img{
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.75));
}

.service-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.service-card p {
  color: #d2d2d2;
  font-size: 1rem;
  line-height: 1.75;
}


.services-cta {
  background: #000;
  background-image: none !important;
  padding: 110px 0;
  text-align: center;
  border-top: 1px solid rgba(201,162,77,0.2);
}

.services-cta h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.services-cta p {
  color: #cfcfcf;
  max-width: 640px;
  margin: 0 auto 45px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-cta .btn-gold {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.appointment {
  background: linear-gradient(180deg, #000 0%, #0b0b0b 100%);
  padding: 120px 0;
}

.appointment h1,
.appointment h2 {
  color: var(--gold);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 15px;
}

.appointment p {
  color: var(--gold);
  opacity: 0.85;
  text-align: center;
  margin-bottom: 60px;
}

.appointment-form {
  max-width: 520px;
  margin: auto;
}

.form-group {
  margin-bottom: 22px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: var(--white);
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.appointment-form ::placeholder {
  color: #888;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(201,162,77,.25);
}

.appointment-form textarea {
  min-height: 130px;
  resize: none;
}

.appointment-form button {
  width: 100%;
  margin-top: 30px;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e0bf6a, #c9a24d);
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.appointment-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,162,77,.35);
}

.contact-info {
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: var(--white);
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contact-hours ul {
  list-style: none;
}

.contact-hours li {
  margin-bottom: 10px;
}

.contact-hours strong {
  color: var(--gold);
}

.hours-note {
  margin-top: 20px;
  color: var(--gray);
}

.contact-details {
  margin-top: 30px;
}

.contact-details strong {
  color: var(--gold);
}

.contact-details a {
  color: var(--white);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 6px;
}

.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 25px 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s ease;
}

.form-success{
  margin-top: 25px;
  padding: 14px;
  background: linear-gradient(135deg,#e0bf6a,#c9a24d);
  color:#000;
  border-radius:8px;
  text-align:center;
  font-weight:600;
  animation:fadeIn .4s ease forwards;
}

input[type="date"] {
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 1;
}

.card-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
  line-height: 1;
}

.about-alt {
  background: radial-gradient(circle at bottom, #111 0%, #000 70%);
}