/*
Theme Name: Dubai Danışmanı
Theme URI: https://dubaidanismani.com
Author: Buğra
Author URI: https://dubaidanismani.com
Description: Dubai Danışmanı için özel premium WordPress tema altyapısı.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.1
Text Domain: dubai-danismani
*/

:root{
  --dg-bg: #f3eee7;
  --dg-bg-soft: #faf7f3;
  --dg-surface: #ffffff;
  --dg-surface-2: #f7f1ea;
  --dg-text: #121212;
  --dg-muted: #625c55;
  --dg-line: #e3d8cb;
  --dg-dark: #171717;
  --dg-dark-2: #232323;
  --dg-white: #ffffff;

  --dg-radius-xl: 34px;
  --dg-radius-lg: 26px;
  --dg-radius-md: 20px;
  --dg-radius-sm: 16px;
  --dg-radius-pill: 999px;

  --dg-shadow-soft: 0 18px 50px rgba(0,0,0,.05);
  --dg-shadow-medium: 0 20px 60px rgba(0,0,0,.07);
  --dg-shadow-strong: 0 24px 70px rgba(0,0,0,.10);

  --dg-container: 1240px;
  --dg-section-space: 96px;
  --dg-transition: .24s ease;
}

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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Arial, sans-serif;
  color: var(--dg-text);
  background: var(--dg-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a{
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea{
  font: inherit;
}

.site{
  overflow-x: clip;
}

.dg-container{
  width: min(100%, var(--dg-container));
  margin-inline: auto;
  padding-inline: 20px;
}

.dg-section{
  padding: var(--dg-section-space) 0;
}

.dg-grid-2{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
}

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

.dg-grid-4{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dg-eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-pill);
  background: rgba(255,255,255,.42);
  color: #756d63;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dg-title-xl{
  margin: 0;
  font-size: 76px;
  line-height: .98;
  letter-spacing: -2.5px;
  font-weight: 700;
  color: var(--dg-text);
}

.dg-title-lg{
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -1.7px;
  font-weight: 700;
  color: var(--dg-text);
}

.dg-title-md{
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.6px;
  font-weight: 700;
  color: var(--dg-text);
}

.dg-copy-lg{
  margin: 0;
  color: var(--dg-muted);
  font-size: 20px;
  line-height: 1.85;
}

.dg-copy{
  margin: 0;
  color: var(--dg-muted);
  font-size: 17px;
  line-height: 1.8;
}

.dg-btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dg-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 24px;
  border-radius: var(--dg-radius-sm);
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  transition: transform var(--dg-transition), background var(--dg-transition), border-color var(--dg-transition), color var(--dg-transition), box-shadow var(--dg-transition);
  cursor: pointer;
}

.dg-btn:hover{
  transform: translateY(-2px);
}

.dg-btn-dark{
  background: var(--dg-dark);
  color: var(--dg-white);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.dg-btn-dark:hover{
  background: var(--dg-dark-2);
}

.dg-btn-light{
  background: var(--dg-white);
  color: var(--dg-text);
  border-color: var(--dg-line);
}

.dg-card{
  background: var(--dg-bg-soft);
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-xl);
  box-shadow: var(--dg-shadow-soft);
}

.dg-reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.dg-reveal.is-visible{
  opacity: 1;
  transform: none;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227,216,203,.8);
}

.dg-header{
  min-height: 84px;
  display: flex;
  align-items: center;
}

.dg-header__inner{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.dg-brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--dg-text);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.4px;
  white-space: nowrap;
}

.dg-brand__mark{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dg-dark);
  flex: 0 0 auto;
}

.dg-nav{
  display: flex;
  justify-content: center;
}

.dg-nav ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.dg-nav a{
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 600;
  transition: opacity var(--dg-transition);
}

.dg-nav a:hover{
  opacity: .72;
}

.dg-header__cta{
  display: flex;
  justify-content: flex-end;
}

.dg-mobile-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--dg-line);
  border-radius: 14px;
  background: var(--dg-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dg-mobile-toggle span{
  width: 18px;
  height: 2px;
  background: var(--dg-text);
  position: relative;
  display: block;
}

.dg-mobile-toggle span::before,
.dg-mobile-toggle span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--dg-text);
}

.dg-mobile-toggle span::before{ top: -6px; }
.dg-mobile-toggle span::after{ top: 6px; }

/* Hero */
.dg-hero{
  padding: 84px 0 38px;
  background: var(--dg-bg);
}

.dg-hero__copy{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.dg-hero__copy .dg-eyebrow{
  margin-bottom: 18px;
}

.dg-hero__copy h1{
  margin-bottom: 18px;
  max-width: 760px;
}

.dg-hero__copy p{
  max-width: 720px;
  margin-bottom: 26px;
}

.dg-hero__actions{
  margin-bottom: 18px;
}

.dg-hero__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dg-hero__tags span{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--dg-radius-pill);
  border: 1px solid var(--dg-line);
  background: #f7f2eb;
  color: #5f5a54;
  font-size: 14px;
  white-space: nowrap;
}

.dg-hero__visual{
  display: grid;
  gap: 18px;
  align-self: start;
}

.dg-hero__image{
  position: relative;
  min-height: 650px;
  border-radius: var(--dg-radius-xl);
  overflow: hidden;
  box-shadow: var(--dg-shadow-medium);
}

.dg-hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dg-hero__badge{
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.dg-hero__badge strong{
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.dg-hero__badge span{
  display: block;
  color: var(--dg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.dg-hero__panel{
  padding: 28px;
}

.dg-panel__label{
  display: block;
  margin-bottom: 10px;
  color: #8a8278;
  font-size: 14px;
}

.dg-panel__title{
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.04;
  letter-spacing: -1.4px;
  font-weight: 700;
}

.dg-panel__text{
  margin-bottom: 18px;
}

.dg-panel__list{
  display: grid;
  gap: 12px;
}

.dg-panel__list div{
  padding: 18px;
  border-radius: 18px;
  background: #f3ede6;
  border: 1px solid #e7ddd1;
  color: #222;
  font-size: 16px;
  line-height: 1.6;
}

/* Proof */
.dg-proof{
  padding: 10px 0 34px;
  background: var(--dg-bg);
}

.dg-proof__row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dg-proof__item{
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--dg-line);
  border-radius: 20px;
  background: #f8f3ed;
  color: #3b3834;
  font-size: 15px;
  font-weight: 600;
}

/* Section Head */
.dg-section-head{
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.dg-section-head .dg-eyebrow{
  margin-bottom: 18px;
}

.dg-section-head h2{
  margin-bottom: 14px;
}

/* Services */
.dg-services{
  background: var(--dg-white);
}

.dg-service-card{
  display: block;
  padding: 30px;
  border-radius: 28px;
  background: var(--dg-surface-2);
  border: 1px solid var(--dg-line);
  transition: transform var(--dg-transition), box-shadow var(--dg-transition), border-color var(--dg-transition);
}

.dg-service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--dg-shadow-soft);
}

.dg-service-card--dark{
  background: var(--dg-dark);
  border-color: var(--dg-dark);
}

.dg-service-card--dark h3,
.dg-service-card--dark p{
  color: var(--dg-white);
}

.dg-service-card__icon{
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--dg-dark);
  color: var(--dg-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.dg-service-card--dark .dg-service-card__icon{
  background: var(--dg-white);
  color: var(--dg-text);
}

.dg-service-card h3{
  margin-bottom: 12px;
}

.dg-service-card p{
  margin: 0;
}

/* Showcase */
.dg-showcase{
  background: var(--dg-bg);
}

.dg-showcase__copy .dg-eyebrow{
  margin-bottom: 18px;
}

.dg-showcase__copy h2{
  margin-bottom: 18px;
}

.dg-showcase__copy p{
  margin-bottom: 26px;
}

.dg-check-list{
  display: grid;
  gap: 14px;
}

.dg-check-list div{
  padding: 18px 20px;
  background: var(--dg-white);
  border: 1px solid var(--dg-line);
  border-radius: 18px;
  color: #242424;
  font-size: 17px;
  line-height: 1.7;
}

.dg-showcase__media{
  min-height: 640px;
  border-radius: var(--dg-radius-xl);
  overflow: hidden;
  box-shadow: var(--dg-shadow-medium);
}

.dg-showcase__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process */
.dg-process{
  background: var(--dg-white);
}

.dg-process-card{
  padding: 28px;
  border-radius: 26px;
  background: #f8f3ed;
  border: 1px solid var(--dg-line);
}

.dg-process-card__number{
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--dg-dark);
  color: var(--dg-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.dg-process-card h3{
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.dg-process-card p{
  margin: 0;
  color: var(--dg-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* CTA */
.dg-cta{
  background: var(--dg-white);
  padding-top: 0;
}

.dg-cta__box{
  padding: 58px 34px;
  border-radius: var(--dg-radius-xl);
  background: var(--dg-surface-2);
  border: 1px solid var(--dg-line);
  text-align: center;
  box-shadow: var(--dg-shadow-soft);
}

.dg-cta__box .dg-eyebrow{
  margin-bottom: 18px;
}

.dg-cta__box h2{
  margin-bottom: 16px;
}

.dg-cta__box p{
  max-width: 840px;
  margin: 0 auto 28px;
}

/* Footer */
.dg-footer{
  background: var(--dg-dark);
  padding: 78px 0 28px;
  color: #d8d2ca;
}

.dg-footer__grid{
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.dg-footer__brand{
  margin: 0 0 14px;
  color: var(--dg-white);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.8px;
  font-weight: 700;
}

.dg-footer h3{
  margin: 0 0 16px;
  color: var(--dg-white);
  font-size: 19px;
  font-weight: 700;
}

.dg-footer p{
  margin: 0;
  color: #cbc4bb;
  font-size: 16px;
  line-height: 1.9;
  max-width: 420px;
}

.dg-footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dg-footer a{
  color: var(--dg-white);
  font-size: 15px;
  line-height: 1.7;
}

.dg-footer__bottom{
  padding-top: 22px;
  color: #a9a095;
  font-size: 14px;
}

/* Lead Page */
.dg-lead{
  background: var(--dg-bg);
}

.dg-lead__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.dg-lead__copy .dg-eyebrow{
  margin-bottom: 18px;
}

.dg-lead__copy h1{
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.03;
  letter-spacing: -1.6px;
  font-weight: 700;
}

.dg-lead__copy p{
  margin: 0 0 24px;
  color: var(--dg-muted);
  font-size: 20px;
  line-height: 1.8;
}

.dg-lead__points{
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.dg-lead__points div{
  padding: 18px;
  background: var(--dg-bg-soft);
  border: 1px solid var(--dg-line);
  border-radius: 18px;
  color: #272727;
  font-size: 17px;
  line-height: 1.6;
}

.dg-lead__note{
  color: #7b7267;
  font-size: 15px;
  line-height: 1.7;
}

.dg-lead__formbox{
  padding: 32px;
}

.dg-lead__formbox .ff-el-group{
  margin-bottom: 16px;
}

.dg-lead__formbox input,
.dg-lead__formbox select,
.dg-lead__formbox textarea{
  width: 100%;
  border-radius: 14px !important;
  border: 1px solid #d8cebf !important;
  background: #fff !important;
  min-height: 52px;
}

.dg-lead__formbox textarea{
  min-height: 120px !important;
}

.dg-lead__formbox .ff-btn-submit{
  width: 100%;
  min-height: 56px;
  border-radius: 14px !important;
  background: var(--dg-dark) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.dg-lead__formbox .ff-btn-submit:hover{
  background: var(--dg-dark-2) !important;
}

/* Floating WhatsApp */
.dg-float-whatsapp{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dg-dark);
  color: var(--dg-white);
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform var(--dg-transition), background var(--dg-transition);
}

.dg-float-whatsapp:hover{
  transform: translateY(-2px);
  background: var(--dg-dark-2);
}

/* Responsive */
@media (max-width: 1200px){
  .dg-title-xl{ font-size: 64px; }
  .dg-title-lg{ font-size: 46px; }
  .dg-panel__title{ font-size: 38px; }
}

@media (max-width: 900px){
  .dg-header__inner{
    grid-template-columns: 1fr auto;
  }

  .dg-nav,
  .dg-header__cta{
    display: none;
  }

  .dg-mobile-toggle{
    display: inline-flex;
  }

  .dg-grid-2,
  .dg-grid-3,
  .dg-grid-4,
  .dg-proof__row,
  .dg-footer__grid,
  .dg-lead__grid{
    grid-template-columns: 1fr;
  }

  .dg-section{
    padding: 68px 0;
  }

  .dg-title-xl{
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -1.2px;
  }

  .dg-title-lg{
    font-size: 32px;
    line-height: 1.08;
  }

  .dg-copy-lg,
  .dg-copy{
    font-size: 17px;
    line-height: 1.72;
  }

  .dg-hero{
    padding: 56px 0 26px;
  }

  .dg-hero__image,
  .dg-showcase__media{
    min-height: 380px;
  }

  .dg-btn-row{
    flex-direction: column;
  }

  .dg-btn{
    width: 100%;
  }

  .dg-hero__panel,
  .dg-service-card,
  .dg-process-card,
  .dg-cta__box,
  .dg-lead__formbox{
    padding: 24px;
  }

  .dg-footer{
    padding: 56px 0 22px;
  }

  .dg-footer__bottom{
    font-size: 13px;
  }

  .dg-float-whatsapp{
    right: 14px;
    bottom: 14px;
    padding: 15px 16px;
    font-size: 14px;
  }
}

.dg-brand-wrap{
  display:flex;
  align-items:center;
}

.dg-nav__menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
  margin:0;
  padding:0;
}

.dg-mobile-menu{
  border-top:1px solid rgba(227,216,203,.8);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.dg-mobile-menu__inner{
  padding:18px 0 22px;
}

.dg-mobile-menu__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.dg-mobile-menu__list a{
  display:block;
  padding:14px 0;
  color:var(--dg-text);
  font-size:16px;
  font-weight:600;
  border-bottom:1px solid var(--dg-line);
}

.dg-mobile-menu__cta{
  margin-top:18px;
}

@media (max-width: 900px){
  .dg-mobile-menu[hidden]{
    display:none !important;
  }
}