/*==================================================
  ÖZ-DE TERCÜME
  STYLE.CSS
==================================================*/

/*========== ROOT ==========*/
:root{
    --navy:#4A3B31;
    --navy-light:#6A5648;
    --gold:#C49A6C;
    --gold-light:#D9B58C;
    --gold-hover:#B88652;
    --cream:#FAF8F4;
    --cream-dark:#F3EEE6;
    --white:#FFFFFF;
    --text:#4A4038;
    --text-light:#6B6058;
    --border:#ECE5DA;
    --shadow-sm:0 5px 15px rgba(0,0,0,.06);
    --shadow:0 15px 35px rgba(80,60,40,.10);
    --shadow-lg:0 25px 60px rgba(60,40,20,.15);
    --radius:18px;
    --transition:.35s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

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

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

ul{
    list-style:none;
}

section{
    position:relative;
}

/*========== HEADER ==========*/
.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(74,59,49,.96);
    backdrop-filter:blur(10px);
    border-bottom:3px solid var(--gold);
    box-shadow:var(--shadow);
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:14px 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/*========== LOGO ==========*/
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:82px;
    height:auto;
    object-fit:contain;
    transition:transform .25s ease;
    filter:drop-shadow(0 3px 8px rgba(0,0,0,.12));
}

.logo:hover img{
    transform:scale(1.06);
}

/*========== MENU ==========*/
.main-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.main-nav a{
    position:relative;
    color:#fff;
      font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:8px 0;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width .35s ease;
}

.main-nav a:hover{
    color:var(--gold-light);
}

.main-nav a:hover::after{
    width:100%;
}

/*========== HEADER CONTACT ==========*/
.header-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
}

.header-contact a{
    color:var(--gold-light);
    font-size:14px;
    font-weight:700;
}

.header-contact a:hover{
    color:#fff;
}

/*========== LANGUAGE SWITCHER ==========*/
.language-switcher{
    display:flex;
    align-items:center;
    gap:8px;
}

.language-switcher a{
    width:46px;
    height:46px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    color:#fff;
    text-decoration:none;
    transition:all .35s ease;
    overflow:hidden;
}

.language-switcher a img{
    width:22px;
    height:14px;
    object-fit:cover;
    display:block;
    border-radius:2px;
}

.language-switcher a span{
    display:block;
    font-size:9px;
    font-weight:700;
    line-height:10px;
    color:#fff;
}

.language-switcher a:hover{
    background:var(--gold);
    transform:translateY(-2px);
}

.language-switcher a.active{
    background:var(--gold);
    box-shadow:0 5px 15px rgba(196,154,108,.35);
}

/*==================================================
  HERO
==================================================*/

.hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:88vh;
    padding:120px 8% 90px;
    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(250,248,244,.97) 0%,
        rgba(250,248,244,.94) 35%,
        rgba(250,248,244,.72) 52%,
        rgba(250,248,244,.20) 68%,
        rgba(250,248,244,0) 100%
    ),
    url("ofis1.webp");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
background:linear-gradient(
    180deg,
    rgba(255,255,255,.02),
    rgba(0,0,0,.02)
);
    pointer-events:none;
}

.hero-overlay{
    display:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:620px;
}

.since{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    color:var(--gold);
    font-size:15px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.since::before{
    content:"";
    width:45px;
    height:2px;
    background:var(--gold);
}

.hero-content h1{
    font-size:clamp(30px,3.8vw,46px);
    line-height:1.15;
    font-weight:800;
    letter-spacing:-.8px;
    color:#2F2924;
    margin-bottom:22px;
    max-width:520px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#5E5348;
    max-width:540px;
    margin-bottom:38px;
}

.hero .primary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 38px;
    border-radius:60px;
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );
    color:#fff;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 18px 35px rgba(196,154,108,.30);
    transition:all .35s ease;
}

.hero .primary-button:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(196,154,108,.30);
    background:linear-gradient(
        135deg,
        #B88756,
        #D5B085
    );
}

/*==================================================
  AVANTAJLAR
==================================================*/

.advantages{
    background:linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.advantage{
    min-height:170px;
    padding:35px 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    color:#fff;
    transition:.35s ease;
    border-right:1px solid rgba(255,255,255,.08);
}

.advantage:last-child{
    border-right:none;
}

.advantage:hover{
    background:rgba(255,255,255,.05);
}

.advantage-icon{
    flex-shrink:0;
    font-size:40px;
    color:var(--gold);
    transition:.35s;
}

.advantage:hover .advantage-icon{
    transform:scale(1.10);
}
.advantage h3{
    color:var(--gold-light);
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
    letter-spacing:.8px;
}

.advantage p{
    font-size:14px;
    line-height:1.7;
    color:rgba(255,255,255,.82);
}

/*==================================================
  GENEL BÖLÜMLER
==================================================*/

.section-container{
    max-width:1400px;
    margin:auto;
    padding:100px 5%;
}

.section-heading{
    text-align:center;
    margin-bottom:65px;
}

.section-heading span{
    display:inline-block;
    color:var(--gold);
    font-size:14px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2{
    color:var(--navy);
    font-size:clamp(34px,4vw,50px);
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:0 auto;
    color:var(--text-light);
    font-size:17px;
    line-height:1.9;
}

/*==================================================
  HİZMETLER
==================================================*/

.services{
    background:var(--white);
    position:relative;
}
.services .section-heading{
    text-align:center;
    padding-top:25px;
    margin-bottom:25px;
}

.services .section-heading h2{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}
.service-grid{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:16px;
    align-items:stretch;
}

/*==================================================
  HİZMET KARTLARI
==================================================*/

.service-card{
    position:relative;
    min-height:160px;
    background:linear-gradient(
        180deg,
        var(--navy),
        var(--navy-light)
    );
    border-bottom:4px solid var(--gold);
    border-radius:18px;
    padding:20px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:all .35s ease;
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        transparent 65%
    );
    opacity:0;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-bottom-color:var(--gold-light);
}

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

.service-icon{
    font-size:46px;
    color:var(--gold-light);
    margin-bottom:20px;
    transition:.35s;
}

.service-card:hover .service-icon{
    transform:scale(1.12);
}

.service-card h3{
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    line-height:1.6;
}
/*==================================================
  HAKKIMIZDA
==================================================*/

.about{
    background:var(--cream);
    text-align:center;
}

.about .section-heading,
.about-box{
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}

.about-box{
    background:var(--white);
    border-left:6px solid var(--gold);
    border-radius:20px;
    padding:55px;
    box-shadow:var(--shadow);
    transition:all .35s ease;
}

.about-box:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow-lg);
}

.about-box p{
    font-size:18px;
    line-height:2;
    color:var(--text-light);
}

.about-box strong{
    color:var(--navy);
}

/*==================================================
  OFİS GALERİSİ
==================================================*/

.office{
    background:var(--white);
}

.office-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.office-gallery img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:all .35s ease;
}

.office-gallery img:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:var(--shadow);
}

/*==================================================
  GOOGLE YORUMLARI
==================================================*/

.reviews{
    background:var(--cream);
}

.reviews-container{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:30px;
    align-items:start;
}

.google-score{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    border-top:5px solid var(--gold);
    box-shadow:var(--shadow);
    transition:all .35s ease;
}

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

.google-logo{
    display:block;
    width:120px;
    height:auto;
    margin:0 auto 20px;
}

.google-logo{
    width:90px;
    height:auto;
    margin:0 auto 18px;
    display:block;
}

.stars{
    color:#F4B400;
    font-size:34px;
    letter-spacing:6px;
    margin-bottom:18px;
}

.google-score p{
    color:var(--text-light);
    line-height:1.9;
    margin:22px 0 32px;
}
.review-cards{
    display:flex;
    flex-direction:column;
    gap:20px;
    justify-content:flex-start;
}
.review-card{
    background:#fff;
    padding:22px;
    border-left:5px solid var(--gold);
    border-radius:16px;
    box-shadow:var(--shadow-sm);
    transition:.3s;
    min-height:170px;
}
.review-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}

.review-card strong{
    display:block;
    color:var(--navy);
    font-size:16px;
    margin-bottom:8px;
}

.review-card p{
    color:var(--text-light);
    line-height:1.6;
    font-size:15px;
    margin:0;
}

/*==================================================
  İLETİŞİM
==================================================*/

.contact{
    background:linear-gradient(
        135deg,
        var(--navy),
        var(--navy-light)
    );
}

.contact .section-heading h2{
    color:#fff;
}

.contact-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.contact-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-radius:20px;
    padding:38px;
    color:#fff;
    backdrop-filter:blur(8px);
    transition:all .35s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(0,0,0,.20);
}

.contact-card h3{
    color:var(--gold-light);
    font-size:20px;
    margin-bottom:22px;
}

.contact-card p{
    color:rgba(255,255,255,.82);
    line-height:1.8;
    margin-bottom:24px;
}

.contact-card a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    margin-bottom:14px;
    transition:.35s;
    word-break:break-word;
}

.contact-card a:hover{
    color:var(--gold-light);
    transform:translateX(4px);
}

.contact-button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    margin-top:18px;
    padding:14px 28px;
    border-radius:50px;
    background:var(--gold);
    color:#fff !important;
    font-weight:700;
}

.contact-button:hover{
    background:var(--gold-hover);
}

/*==================================================
  SOSYAL MEDYA
==================================================*/

.social-link{
    display:flex;
    align-items:center;
    gap:14px;
    margin:12px 0;
}

.instagram-icon,
.facebook-icon,
.linkedin-icon{
    font-size:28px;
    min-width:28px;
    color:var(--gold);
}

.social-link span{
    line-height:1.4;
}
/*==================================================
  FOOTER
==================================================*/

footer{
    background:linear-gradient(135deg,var(--navy),#3B2F27);
    color:#fff;
    text-align:center;
    padding:60px 20px;
    border-top:4px solid var(--gold);
}

footer img{
    width:95px;
    margin:0 auto 18px;
}

footer strong{
    display:block;
    color:var(--gold-light);
    font-size:24px;
    margin-bottom:15px;
}

footer p{
    color:rgba(255,255,255,.85);
    margin:12px 0;
    line-height:1.8;
}

footer small{
    color:rgba(255,255,255,.60);
    font-size:13px;
}

/*==================================================
  TABLET
==================================================*/

@media (max-width:991px){

.header-container{
    flex-direction:column;
    gap:22px;
    text-align:center;
}

.main-nav{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

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

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

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

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

.reviews-container{
    grid-template-columns:1fr;
}

}

/*==================================================
  TELEFON
==================================================*/

@media (max-width:576px){

.section-container{
    padding:70px 6%;
}

.hero{
    min-height:auto;
    padding:90px 6% 60px;
}

.hero-content h1{
    font-size:36px;
}

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

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

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

.office-gallery{
    grid-template-columns:1fr;
}

.office-gallery img{
    height:220px;
}

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

.language-switcher{
    justify-content:center;
}

}

/*==================================================
  RTL (ARAPÇA)
==================================================*/

html[dir="rtl"] body{
    direction:rtl;
}

html[dir="rtl"] .header-container{
    flex-direction:row-reverse;
}

html[dir="rtl"] .main-nav{
    flex-direction:row-reverse;
}

html[dir="rtl"] .hero-content{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

html[dir="rtl"] .section-heading{
    text-align:center;
}

html[dir="rtl"] .contact-card{
    text-align:right;
}

html[dir="rtl"] .contact-card a{
    justify-content:flex-start;
}

html[dir="rtl"] .social-link{
    justify-content:flex-start;
}

html[dir="rtl"] .office-gallery{
    direction:ltr;
}
/*==================================================
  YUKARI ÇIK BUTONU
==================================================*/

#topButton{
    position:fixed;
    right:28px;
    bottom:28px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );
    color:var(--navy);
    font-size:24px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,0,0,.22);
    opacity:0;
    visibility:hidden;
    transition:all .35s ease;
    z-index:9999;
}

#topButton.show{
    opacity:1;
    visibility:visible;
}

#topButton:hover{
    background:linear-gradient(
        135deg,
        var(--gold-hover),
        var(--gold)
    );
    color:#fff;
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 22px 45px rgba(0,0,0,.28);
}

#topButton:active{
    transform:translateY(-2px);
}

/*==================================================
  SEÇİM RENGİ
==================================================*/

::selection{
    background:var(--gold);
    color:#fff;
}

::-moz-selection{
    background:var(--gold);
    color:#fff;
}

/*==================================================
  SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:var(--cream);
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--gold-hover);
}

/*=========================================
  AKTİF MENÜ
=========================================*/

.main-nav a.active{
    color:var(--gold-light);
}

.main-nav a.active::after{
    width:100%;
}
/*=========================================
  ÇALIŞMA SAATLERİ
=========================================*/

.working-hours{
    margin-top:4px;
}

.hours-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:4px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:13px;
    line-height:1.2;
}

.hours-row:last-child{
    border-bottom:none;
}

.hours-row span{
    color:rgba(255,255,255,.90);
    font-weight:500;
}

.hours-row strong{
    color:var(--gold-light);
    font-weight:700;
}

.hours-row.closed strong{
    color:#ffb3b3;
}

.holiday-note{
    margin-top:6px;
    padding-top:6px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.72);
    font-size:11px;
    line-height:1.3;
    font-style:italic;
}
/*=========================================
  ARAPÇA RTL DÜZENİ
=========================================*/

html[dir="rtl"] .hours-row{
    direction:rtl;
    text-align:right;
}

html[dir="rtl"] .holiday-note{
    text-align:right;
}

html[dir="rtl"] .social-link{
    justify-content:flex-start;
    flex-direction:row-reverse;
    text-align:right;
}

html[dir="rtl"] .contact-card a:hover{
    padding-left:0;
    padding-right:6px;
}
/*=========================================
  WHATSAPP FLOAT BUTTON
=========================================*/

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:100px;
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#25D366;
    color:#ffffff;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(37,211,102,.35);
    transition:all .35s ease;
    z-index:9999;
}

.whatsapp-float:hover{
    background:#1EBE5D;
    color:#ffffff;
    transform:translateY(-3px) scale(1.04);
    box-shadow:0 14px 30px rgba(37,211,102,.35);
}

.whatsapp-float:active{
    transform:scale(.96);
}

/* Arapça (RTL) */

html[dir="rtl"] .whatsapp-float{
    right:auto;
    left:25px;
}

/* Mobil */

@media (max-width:768px){

    .whatsapp-float{
        width:58px;
        height:58px;
        right:18px;
        bottom:90px;
        font-size:30px;
    }

    html[dir="rtl"] .whatsapp-float{
        right:auto;
        left:18px;
    }

}
/*=========================================
  WEBSITE LINK
=========================================*/

.website-link i{
    color:var(--gold);
    font-size:28px;
    transition:.35s;
}

.website-link:hover i{
    transform:scale(1.15);
}

.website-link span{
    font-weight:600;
    letter-spacing:.3px;
}
/*=========================================
  GOOGLE MAP
=========================================*/

.contact-card iframe{
    width:100%;
    height:250px;
    border:0;
    border-radius:15px;
    margin:15px 0 20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


/* Mobil */

@media(max-width:576px){

    .contact-card iframe{
        height:220px;
    }
html[lang="ar"] .hero-content {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
html[lang="ar"] .hero {
    justify-content: center;
}

html[lang="ar"] .hero-content {
    width: 100%;
    max-width: 620px;
    text-align: center;
}

html[lang="ar"] .hero-content h1,
html[lang="ar"] .hero-content p {
    margin-left: auto;
    margin-right: auto;
}

html[lang="ar"] .hero .primary-button {
    display: inline-flex;
}
/* OFİS FOTOĞRAF LIGHTBOX */

.office-lightbox {
    display: none !important;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
}

.office-lightbox.active {
    display: flex !important;
}

.office-lightbox img {
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: officePhotoOpen 0.3s ease;
}

.office-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
}

@keyframes officePhotoOpen {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .office-lightbox {
        padding: 15px;
    }

    .office-lightbox img {
        max-width: 95vw;
        max-height: 82vh;
    }

    .office-lightbox-close {
        top: 15px;
        right: 18px;
        font-size: 40px;
    }
}
}
