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

html {
    scroll-behavior: smooth;
}

body {
    /* الخطوط تدعم الحروف التركية بشكل ممتاز */
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===========================
   HEADER (BAŞLIK)
=========================== */

header {
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.top-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px 15px;
}

.top-logo img {
    width: 180px;
    filter: drop-shadow(0 0 12px rgba(255,215,0,.35));
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

.site-title{
    text-align:center;
    color:#0A58CA;
    font-size:38px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:20px;
    min-height:50px;
}

/* النص المكتوب */
.site-title #typingTitle{
    color:#0A58CA;
}

/* المؤشر */
.site-title .cursor{
    display:inline-block;
    color:#0A58CA;
    animation:blink .8s infinite;
}

@keyframes blink{

    0%{
        opacity:1;
    }

    50%{
        opacity:0;
    }

    100%{
        opacity:1;
    }

}

/* ===========================
   DİL SEÇİMİ (LANGUAGE)
=========================== */

.language-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.lang-btn {
    padding: 12px 22px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #0EA5E9,
        #2563EB,
        #7C3AED,
        #FFD700
    );
    background-size: 300%;
    animation: gradientMove 7s linear infinite;
}

.lang-btn:hover {
    transform: translateY(-4px);
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}

/* ===========================
   İLETİŞİM BUTONLARI (CONTACT BUTTONS)
=========================== */

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 32px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    overflow: hidden;
    background: linear-gradient(
        130deg,
        #0EA5E9,
        #2563EB,
        #7C3AED,
        #A855F7,
        #FFD700,
        #F59E0B,
        #0EA5E9
    );
    background-size: 500%;
    animation: gradientMove 8s ease infinite;
    border: 1px solid rgba(255,255,255,.25);
    transition: .35s;
}

.btn::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #00D4FF,
        #FFFFFF,
        #FFD700
    );
    border-radius: 20px;
    box-shadow:
        0 0 8px #00D4FF,
        0 0 14px #FFD700;
    offset-path: inset(2px round 40px);
    offset-distance: 0%;
    animation: borderRunner 2s linear infinite;
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 18px rgba(37,99,235,.55),
        0 0 35px rgba(255,215,0,.45);
}

@keyframes borderRunner {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

/* ===========================
   NAVİGASYON BARI (NAVBAR)
=========================== */

.navbar {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 18px;
    flex-wrap: wrap;
}

.navbar a {
    color: #222;
    font-weight: 700;
    transition: .3s;
    position: relative;
}

.navbar a:hover {
    color: #0A58CA;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    /* تحويل البداية لليسار لتتناسب مع القراءة الغربية LTR */
    left: 0; 
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: .3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* ===========================
   ANA SAYFA (HOME)
=========================== */

.home {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.home h2 {
    font-size: 42px;
    color: #0A58CA;
    margin-bottom: 25px;
}

.home p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: auto;
}

/* ===========================
   HİZMETLER (SERVICES)
=========================== */

.services {
    padding: 80px 20px;
    background: #f8f9fb;
}

.services h2 {
    text-align: center;
    font-size: 40px;
    color: #0A58CA;
    margin-bottom: 45px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}

.service-card .icon {
    font-size: 55px;
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0A58CA;
}

.service-card p {
    color: #666;
}

/* ===========================
   GALERİ (GALLERY)
=========================== */

.gallery {
    padding: 80px 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 45px;
    color: #0A58CA;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 18px;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.gallery-grid img:hover {
    transform: scale(1.04);
}

/* ===========================
   İLETİŞİM (CONTACT)
=========================== */

.contact {
    padding: 80px 20px;
    background: #f8f9fb;
    text-align: center;
}

.contact h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0A58CA;
}

.contact p {
    margin-bottom: 30px;
    color: #666;
}

/* ===========================
   ALT BİLGİ (FOOTER)
=========================== */

footer {
    background: #0A58CA;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

/* ===========================
   MOBİL UYUMLULUK (MOBILE)
=========================== */

@media(max-width: 768px) {
    .site-title {
        font-size: 28px;
    }
    .top-logo img {
        width: 200px;
    }
    .navbar ul {
        gap: 18px;
    }
    .home h2 {
        font-size: 30px;
    }
    .services h2,
    .gallery h2,
    .contact h2 {
        font-size: 30px;
    }
    .btn {
        width: 90%;
    }
}

section {
    scroll-margin-top: 30px;
}

/* ===========================
   BANYO SLAYTI (Bathroom Slider)
=========================== */

.image-card {
    padding: 0 !important;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.slider img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: .45s;
}

.slider img:hover {
    transform: scale(1.04);
    box-shadow:
        0 0 12px rgba(79,195,247,.35),
        0 0 25px rgba(79,195,247,.25);
}

/* Oklar (Arrows) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .3s;
    z-index: 20;
}

.slider-btn:hover {
    background: #4FC3F7;
    box-shadow:
        0 0 12px #4FC3F7,
        0 0 25px rgba(79,195,247,.7);
}

.prev {
    left: 12px;
}

.next {
    right: 12px;
}

/* Resim Üzerindeki Metin (Image Overlay) */
.image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: transparent;
    text-align: center;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}

.image-overlay h3 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

.image-overlay p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

/* ===========================
   VİDEO KARTI (Video Card)
=========================== */

.video-card {
    padding: 0 !important;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.video-card .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.video-card video {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    background: #000;
    cursor: pointer;
    transition: .35s;
}

.video-card video:hover {
    transform: scale(1.02);
}

.video-card .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .3s;
    z-index: 20;
}

.video-card .slider-btn:hover {
    background: #4FC3F7;
    box-shadow:
        0 0 12px #4FC3F7,
        0 0 25px rgba(79,195,247,.7);
}

.video-card .prev {
    left: 12px;
}

.video-card .next {
    right: 12px;
}

.video-card .image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: transparent;
    text-align: center;
    color: #fff;
    pointer-events: none;
    z-index: 10;
}

.video-card .image-overlay h3 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

.video-card .image-overlay p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.8);
}

/* ===========================
   PREMİUM LOGO
=========================== */

.tips-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    position: relative;
}

.tips-logo::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(
        #FFD700,
        #00C8FF,
        #8A2BE2,
        #FFD700
    );
    animation: logoRing 4s linear infinite;
    filter: blur(18px);
    opacity: .85;
}

.tips-logo img {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 8px;
    box-shadow: 0 0 15px rgba(255,255,255,.7);
}

@keyframes logoRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===========================
   CANLI SAAT (LIVE CLOCK)
=========================== */

.live-clock {
    position: absolute;
    top: 145px;
    right: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    font-family: 'Digital-7', monospace;
    direction: ltr; /* تظل LTR لأن الأرقام والوقت يقرآن من اليسار دائماً */
}

/* Saat (Time) */
.live-clock .time {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    animation: clockColor 2s infinite alternate;
}

@keyframes clockColor {
    0% {
        color: #FFD700;
        text-shadow:
            0 0 5px rgba(255,215,0,.6),
            0 0 10px rgba(255,215,0,.4);
    }
    100% {
        color: #38BDF8;
        text-shadow:
            0 0 5px rgba(56,189,248,.6),
            0 0 10px rgba(56,189,248,.4);
    }
}

/* Tarih (Date) */
.live-clock .date {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    animation: clockColor 2s infinite alternate;
}

/* ===========================
   HAVUZ SLAYTI (POOL SLIDER)
=========================== */

.pool-slider {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 22px;
    line-height: 0;
}

.pool-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity .5s ease;
}

.pool-slider img:hover {
    transform: scale(1.03);
}

/* ===========================
   GOOGLE ÇEVİRİ GİZLEME (Google Translate Hide)
=========================== */

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
    color: transparent !important;
}

.goog-te-gadget img {
    display: none !important;
}

.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget-simple {
    background: transparent !important;
    border: none !important;
  }
/* ===========================
   SOCIAL MEDIA
=========================== */

.social-section{

    padding:45px 15px;

    background:#fff;

    text-align:center;

}

.social-section h2{

    font-size:26px;

    font-weight:800;

    color:#0A58CA;

    margin-bottom:20px;

}

.social-icons{

    display:flex;

    flex-direction:row;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:nowrap;

}

.social-link{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#F5F5F5;

    color:#808080;

    font-size:24px;

    transition:.35s;

    box-shadow:0 4px 10px rgba(0,0,0,.08);

}

.social-link:hover{

    transform:translateY(-3px) scale(1.08);

    background:#EAEAEA;

    color:#555;

    box-shadow:0 8px 18px rgba(0,0,0,.18);

}

.social-link:active{

    transform:scale(.95);

}
/* ===========================
   MENU BUTTON
=========================== */

.menu-toggle{

    position:absolute;

    top:14px;

    left:20px;

    width:48px;

    height:48px;

    border:none;

    border-radius:12px;

    background:#0A58CA;

    color:#fff;

    font-size:32px;

    font-weight:bold;

    cursor:pointer;

    z-index:9999;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 5px 15px rgba(0,0,0,.18);

    transition:.3s;

}

.menu-toggle:hover{

    background:#084298;

    transform:scale(1.05);

}
/* ===========================
   SIDE MENU
=========================== */

.side-menu{

    position:fixed;

    top:0;

    left:-340px;

    width:320px;

    max-width:85%;

    height:100vh;

    background:#ffffff;

    box-shadow:8px 0 30px rgba(0,0,0,.20);

    z-index:99999;

    transition:left .35s ease;

    overflow-y:auto;

}

.side-menu.active{

    left:0;

}

/* رأس القائمة */

.side-header{

    background:#0A58CA;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.side-logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.side-logo img{

    width:55px;

    height:55px;

    object-fit:contain;

}

.side-logo h2{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin:0;

}

#closeMenu{

    border:none;

    background:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

}

/* روابط القائمة */

.side-links{

    padding:15px 0;

}

.side-links a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 22px;

    color:#333;

    text-decoration:none;

    font-size:19px;

    transition:.25s;

    border-bottom:1px solid #ececec;

}

.side-links a i{

    color:#0A58CA;

    width:24px;

    text-align:center;

    font-size:20px;

}

.side-links a:hover{

    background:#f5f8ff;

    padding-right:28px;

}

.side-links hr{

    border:none;

    border-top:1px solid #ddd;

    margin:15px 20px;

}

/* الخلفية السوداء */

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/* الموبايل */

@media(max-width:768px){

    .side-menu{

        width:300px;

    }

}
/* ===========================
   POPUP
=========================== */

.popup-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999999;

}

.popup-overlay.active{

    opacity:1;

    visibility:visible;

}

.popup-box{

    width:90%;

    max-width:700px;

    max-height:85vh;

    overflow-y:auto;

    background:#fff;

    border-radius:18px;

    padding:30px;

    position:relative;

    box-shadow:0 10px 40px rgba(0,0,0,.25);

    animation:popupShow .3s ease;

}

@keyframes popupShow{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.popup-close{

    position:absolute;

    top:15px;

    left:15px;

    border:none;

    background:none;

    font-size:30px;

    cursor:pointer;

    color:#0A58CA;

}

.popup-box h2{

    color:#0A58CA;

    text-align:center;

    margin-bottom:20px;

    font-size:30px;

}

.popup-box p{

    line-height:2;

    color:#444;

    font-size:18px;

}
/* ===========================
   EXTRA LINKS
=========================== */

.extra-links{

    padding:25px;

}

.extra-links h3{

    font-size:30px;

    color:#0A58CA;

    margin-bottom:18px;

    font-weight:800;

}

.extra-links ul{

    list-style:none;

    padding:0;

    margin:0;

}

.extra-links li{

    margin:14px 0;

}

.extra-links a{

    display:block;

    text-decoration:none;

    color:#444;

    font-size:21px;

    transition:.3s;

}

.extra-links a:hover{

    color:#0A58CA;

    padding-left:8px;

}
<div class="extra-links">

    <h3>Ek Bilgiler</h3>

    <ul>

        <li><a href="about-tr.html">Hakkımızda</a></li>

        <li><a href="services-tr.html">Sunduğumuz Hizmetler</a></li>

        <li><a href="areas-tr.html">Hizmet Verdiğimiz Bölgeler</a></li>

        <li><a href="faq-tr.html">Sık Sorulan Sorular</a></li>

        <li><a href="quality-tr.html">İş Kalitesi</a></li>

        <li><a href="contact-tr.html">İletişim</a></li>

        <li><a href="question-tr.html">Sorunuzu Gönderin</a></li>

    </ul>

</div>
