:root{
--primary:#6D214F;
--dark:#202020;
--light:#ffffff;
--gray:#666;
--border:#ececec;
--shadow:0 5px 20px rgba(0,0,0,.08);
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
color:var(--dark);
background:#fff;
}

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

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

ul{
list-style:none;
}

.container{
max-width:1320px;
width:100%;
margin:0 auto;
padding:0 15px;
}

/* TOP BAR */

.topbar{
background:var(--primary);
color:#fff;
font-size:14px;
}

.topbar .container{
display:flex;
justify-content:flex-end;
align-items:center;
gap:30px;
height:44px;
}

.topbar a{
display:flex;
align-items:center;
gap:8px;
transition:.25s;
}

.topbar a:hover{
opacity:.85;
}

/* HEADER */

.site-header{
background:#fff;
position:sticky;
top:0;
z-index:9999;
box-shadow:var(--shadow);
}

.site-header .container{

height:90px;

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

.logo img{

height:80px;
width:auto;

}

/* MENU */

.nav-menu{

display:flex;
align-items:center;
gap:38px;

}

.nav-menu a{

font-weight:600;
position:relative;
transition:.25s;

}

.nav-menu a::after{

content:"";
position:absolute;
left:0;
bottom:-7px;
width:0;
height:2px;
background:var(--primary);
transition:.25s;

}

.nav-menu a:hover{

color:var(--primary);

}

.nav-menu a:hover::after{

width:100%;

}

/* BUTTON */

.menu-toggle{

display:none;

background:none;

border:none;

cursor:pointer;

}

.menu-toggle svg{

width:32px;

height:32px;

}

/* MOBILE */

@media(max-width:768px){

.menu-toggle{

display:block;

position:absolute;
right:0;

}

.nav-menu{

position:absolute;

left:0;

right:0;

top:100%;

background:#fff;

display:none;

flex-direction:column;

align-items:flex-start;

padding:20px;

box-shadow:var(--shadow);

gap:20px;

}

.nav-menu.active{

display:flex;

}

.site-header .container{

height:78px;

}

.logo img{

height:52px;
width:auto;
}

.topbar .container{

justify-content:center;

gap:15px;

flex-wrap:wrap;

padding:8px 0;

height:auto;

}

}
/* HERO */

.hero{

padding:10px 0;

background:#ffffff;

}

.hero-wrapper{

display:flex;

align-items:flex-start;
padding-top:30px;
justify-content:space-between;

gap:20px;

}

.hero-content{

flex:1;

max-width:600px;

}

.hero-badge{

display:inline-block;

background:#F7EDF3;

color:#6D214F;

padding:8px 18px;

border-radius:30px;

font-size:30px;

font-weight:600;

margin-bottom:20px;

}

.hero h1{

font-size:24px;

line-height:1.2;

font-weight:800;

margin-bottom:25px;

color:#222;

}

.hero h1 span{

color:#6D214F;

}

.hero p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:35px;

}

.hero-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

background:#6D214F;

color:#fff;

font-size:18px;

font-weight:700;

border-radius:8px;

text-decoration:none;

}

.hero-btn:hover{

background:#53193B;

}

.hero-features{

display:flex;

flex-wrap:wrap;

gap:20px;

margin-top:40px;

font-size:15px;

font-weight:600;

color:#444;

}

.hero-image{

flex:1;

text-align:right;

}

.hero-image picture{

display:block;

}

.hero-image img{
max-width:700px;
width:100%;
height:auto;
}

hero-image img{

width:100%;

max-width:620px;

height:auto;

display:block;

margin-left:auto;

}

/* MOBİL */

@media(max-width:992px){

.hero{

padding:1px 0;

}

.hero-wrapper{

flex-direction:column-reverse;

text-align:center;

gap:35px;

}

.hero-content{

max-width:100%;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:17px;

}

.hero-features{

justify-content:center;

}

.hero-image{

text-align:center;

}

.hero-image img{

margin:auto;

max-width:100%;

}

}

@media(max-width:576px){

.hero h1{

font-size:20px;

}

.hero p{

font-size:18px;

line-height:1.7;

}

.hero-btn{

width:100%;

padding:16px;

}

.hero-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:12px;

font-size:14px;

}

}
/* INTRO */

.intro{

padding:1px 0;

background:#fff;


}

.intro-text{

width:100%;

text-align:center;


}

.intro-text h2{

font-size:28px;

font-weight:800;

color:#202020;

margin-bottom:5px;

line-height:1.3;


}

.intro-text p{

font-size:18px;


line-height:1.9;

color:#555;

text-align:justify;

text-align-last:center;


}
.intro-text::after{

content:"";

display:block;

width:70px;

height:3px;

background:#6D214F;

margin:35px auto 0;

border-radius:20px;


}

/* Tablet */

@media(max-width:768px){

.intro{

padding:10px 0;


}

.intro-text h2{

font-size:30px;


}

.intro-text p{

font-size:17px;

line-height:1.8;
 


padding:0 18px;
}

}

/* Telefon */

@media(max-width:480px){

.intro{

padding:10px 0;


}

.intro-text h2{

font-size:25px;


}

.intro-text p{

font-size:16px;

line-height:1.8;


}

}
/* HİZMETLER */

.services{

padding:10px 0;

background:#fff;

}

.section-title{

text-align:center;

margin-bottom:45px;

}

.section-title h2{

font-size:28px;

font-weight:800;

color:#202020;

margin-bottom:10px;

}

.section-title p{

font-size:17px;

color:#666;

}

.services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.service-card{

background:#fff;

border:1px solid #ececec;

border-radius:14px;

overflow:hidden;

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

transition:box-shadow .25s ease;


}
.service-card:hover{

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

}

.service-card img{

width:100%;

height:auto;

display:block;

aspect-ratio:16/10;

object-fit:cover;

}

.service-content{

padding:22px;

}

.service-content h3{

font-size:20px;

color:#6D214F;

margin-bottom:12px;

}

.service-content p{

font-size:15px;

line-height:1.7;

color:#555;

}

/* TABLET */

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* TELEFON */

@media(max-width:768px){

.services{

padding:10px 0;

}

.section-title{

padding:0 15px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:16px;

}

.services-grid{

grid-template-columns:1fr;

gap:20px;

padding:0 15px;

}

.service-content{

padding:20px;

}

.service-content h3{

font-size:20px;

}

}
/* NEDEN BİZ */

.why-us{

padding:10px 0;

background:#fff;


}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;


}

.why-card{

text-align:center;

border:1px solid #ececec;

border-radius:14px;

padding:15px 25px;

background:#fff;

transition:box-shadow .25s ease;


}

.why-card:hover{

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


}

.why-icon{

font-size:34px;

color:#F4B400;

margin-bottom:18px;

letter-spacing:2px;

line-height:1;


}

.why-card h3{

font-size:18px;

color:#6D214F;

margin-bottom:15px;


}

.why-card p{

font-size:16px;

color:#555;

line-height:1.8;


}

/* TABLET */

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);


}

}

/* TELEFON */

@media(max-width:768px){

.why-us{

padding:10px 0;


}

.why-grid{

grid-template-columns:1fr;

gap:20px;


}

.why-card{

padding:30px 20px;


}

.why-card h3{

font-size:20px;


}

.why-card p{

font-size:16px;


}

}
/* CTA */

.cta{

background:#6D214F;

padding:70px 0;

text-align:center;

color:#fff;


}

.cta p{

max-width:750px;

margin:0 auto 35px;

font-size:18px;

line-height:1.8;

opacity:.95;


}

.cta-buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;


}

.cta-buttons a{

display:inline-flex;

align-items:center;

justify-content:center;

min-width:210px;

height:54px;

padding:0 28px;

border-radius:8px;

font-weight:700;

transition:.25s;


}

.btn-phone{

background:#fff;

color:#6D214F;


}

.btn-phone:hover{

background:#f4f4f4;


}

.btn-whatsapp{

background:#25D366;

color:#fff;


}

.btn-whatsapp:hover{

background:#20bb5a;


}

/* TABLET */

@media(max-width:768px){

.cta{

padding:55px 15px;


}
.cta-title{

font-size:30px;

line-height:1.4;

margin-bottom:15px;


}

.cta h2{

font-size:30px;


}

.cta p{

font-size:16px;

margin-bottom:30px;


}

.cta-buttons{

flex-direction:column;

align-items:center;


}

.cta-buttons a{

width:100%;

max-width:320px;


}

}
/* VİDEOLAR */

.videos{

padding:10px 0;

background:#fff;


}

.videos-content{

max-width:850px;

margin:auto;

text-align:center;


}

.videos-content h2{

font-size:36px;

font-weight:800;

color:#202020;

margin-bottom:15px;


}

.videos-content p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:35px;


}

.video-btn{

display:inline-flex;

align-items:center;

justify-content:center;

min-width:220px;

height:54px;

padding:0 30px;

background:#6D214F;

color:#fff;

border-radius:8px;

font-weight:700;

transition:.25s;


}

.video-btn:hover{

background:#5b1b42;


}

/* TABLET */

@media(max-width:768px){

.videos{

padding:10px 15px;


}

.videos-content h2{

font-size:30px;


}

.videos-content p{

font-size:16px;

margin-bottom:30px;


}

.video-btn{

width:100%;

max-width:320px;


}

}

/* FOOTER */

.footer{

background:#6D214F;

color:#fff;

padding:70px 0 0;


}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:45px;


}

.footer-logo{

height:60px;

width:auto;

margin-bottom:20px;


}

.footer-box p{

line-height:1.8;

color:rgba(255,255,255,.85);

font-size:15px;


}

.footer-box h3{

font-size:20px;

margin-bottom:20px;

font-weight:700;


}

.footer-box ul li{

margin-bottom:14px;


}

.footer-box a{

color:rgba(255,255,255,.85);

transition:.25s;


}

.footer-box a:hover{

color:#fff;

padding-left:4px;


}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.15);

margin-top:50px;

padding:20px 0;

text-align:center;


}

.footer-bottom p{

color:rgba(255,255,255,.75);

font-size:14px;


}

/* TABLET */

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);


}

}

/* TELEFON */

@media(max-width:768px){

.footer{

padding-top:55px;


}

.footer-grid{

grid-template-columns:1fr;

gap:35px;

text-align:center;


}

.footer-logo{

margin:0 auto 20px;


}

.footer-box a:hover{

padding-left:0;


}

}
/* HAKKIMIZDA */

.about-page{

padding:5px 0 5px;

background:#fff;

}

.about-page h2{

font-size:22px;

font-weight:800;

margin-bottom:5px;

line-height:1.3;

}

.about-page p{

font-size:18px;

line-height:1.9;

margin-bottom:5px;

color:#555;

}

/* DEĞERLER */

.about-values{

padding:10px 0 10px;

background:#fafafa;

}
.about-values h2{

text-align:center;

}

.values-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:40px;

}

.value-box{

background:#fff;

padding:35px;

border:1px solid #ececec;

border-radius:14px;

box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.value-box h3{

font-size:22px;

margin-bottom:15px;

color:#6D214F;

}

.value-box p{

margin:0;

line-height:1.8;

color:#666;

}

@media(max-width:768px){

.about-page{

padding:60px 0 40px;

}

.about-page h2{

font-size:30px;

}

.about-page p{

font-size:16px;

line-height:1.8;

}

.values-grid{

grid-template-columns:1fr;

}

}
.process-section{

padding:10px 0;

background:#fff;

}
.process-section h2{

text-align:center;

}

.section-intro{

max-width:760px;

margin:5px auto 25px;

text-align:center;

color:#666;

line-height:1.8;

}

.process-grid{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

}

.process-box{

background:#fafafa;

border:1px solid #ececec;

padding:30px;

border-radius:14px;

text-align:center;

transition:.3s;

}

.process-box:hover{

transform:translateY(-5px);

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

}

.process-box span{

display:inline-flex;

width:52px;

height:52px;

border-radius:50%;

background:#6D214F;

color:#fff;

align-items:center;

justify-content:center;

font-weight:700;

font-size:20px;

margin-bottom:8px;

}

.process-box h3{

margin-bottom:5px;

font-size:20px;

}

.process-box p{

margin:0;

color:#666;

line-height:1.8;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}
.faq-section{

padding:10px 0;

background:#fafafa;

}

.faq-section h2{

text-align:center;
}

.faq-item{

background:#fff;

border:1px solid #ececec;

border-radius:12px;

padding:28px;

margin-bottom:20px;

}

.faq-item h3{

font-size:22px;

margin-bottom:12px;

color:#6D214F;

}

.faq-item p{

margin:0;

line-height:1.8;

color:#666;

}
.about-end{

padding:10px 0;

background:#fafafa;

text-align:center;

}

.about-end h2{

font-size:38px;

margin-bottom:5px;

}

.about-end p{

max-width:900px;

margin:auto;

line-height:2;

color:#666;

font-size:18px;

}

.why-fasilekibim{

padding:80px 0;

background:#fff;


}

.why-fasilekibim h2{

text-align:center;

margin-bottom:15px;


}

.company-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:45px;


}

.company-card{

background:#fff;

border:1px solid #ececec;

border-radius:14px;

padding:35px 25px;

text-align:center;

box-shadow:0 5px 22px rgba(0,0,0,.05);

transition:.3s;


}

.company-card:hover{

transform:translateY(-6px);

box-shadow:0 12px 28px rgba(0,0,0,.08);


}

.company-icon{

font-size:42px;

margin-bottom:20px;


}

.company-card h3{

font-size:22px;

margin-bottom:15px;

color:#6D214F;


}

.company-card p{

margin:0;

line-height:1.8;

color:#666;


}

@media (max-width:992px){

.company-grid{

grid-template-columns:repeat(2,1fr);


}

}

@media (max-width:768px){

.company-grid{

grid-template-columns:1fr;


}

}

.seo-text .container h2{
text-align:center;
}

.reservation-process{

padding:10px 0;

background:#fafafa;

}

.reservation-process h2{

text-align:center;

margin-bottom:15px;

}

.section-intro{

max-width:760px;

margin:0 auto 50px;

text-align:center;

line-height:1.9;

color:#666;

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.process-card{

background:#fff;

padding:35px;

border-radius:14px;

border:1px solid #ececec;

box-shadow:0 6px 22px rgba(0,0,0,.05);

transition:.3s;

}

.process-card:hover{

transform:translateY(-6px);

}

.process-number{

width:60px;

height:60px;

border-radius:50%;

background:#6D214F;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:700;

margin-bottom:20px;

}

.process-card h3{

font-size:22px;

margin-bottom:15px;

}

.process-card p{

line-height:1.8;

color:#666;

margin:0;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}
.seo-article{

padding:5px 0;

background:#fff;


}

.seo-article h2{

font-size:38px;

margin-bottom:10px;


}

.seo-article h3{

margin-top:20px;

margin-bottom:15px;

font-size:28px;

color:#6D214F;


}

.seo-article p{

line-height:2;

color:#555;

margin-bottom:22px;

font-size:18px;


}

@media(max-width:768px){

.seo-article{

padding:60px 0;

}

.seo-article h2{

font-size:30px;

}

.seo-article h3{

font-size:24px;

}

.seo-article p{

font-size:16px;

line-height:1.9;

}

}
.home-events{

padding:80px 0;

background:#fafafa;


}

.home-events h2{

text-align:center;

margin-bottom:15px;


}

.events-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:45px;


}

.event-card{

background:#fff;

border:1px solid #ececec;

border-radius:14px;

padding:35px 25px;

text-align:center;

box-shadow:0 5px 22px rgba(0,0,0,.05);

transition:.3s;


}

.event-card:hover{

transform:translateY(-6px);

box-shadow:0 12px 28px rgba(0,0,0,.08);


}

.event-icon{

font-size:42px;

margin-bottom:20px;


}

.event-card h3{

font-size:22px;

margin-bottom:15px;

color:#6D214F;


}

.event-card p{

margin:0;

line-height:1.8;

color:#666;


}

@media (max-width:992px){

.events-grid{

grid-template-columns:repeat(2,1fr);


}

}

@media (max-width:768px){

.events-grid{

grid-template-columns:1fr;


}

}
.district-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
margin-top:35px;
}

.district-card{
display:flex;
justify-content:center;
align-items:center;
padding:18px;
background:#fff;
border:1px solid #ececec;
border-radius:12px;
font-weight:600;
text-decoration:none;
color:#222;
transition:.3s;
box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.district-card:hover{
background:#a67c52;
color:#fff;
transform:translateY(-4px);
}


/* ==========================
   VİDEOLAR SAYFASI
========================== */

.video-gallery{
    padding:80px 0;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    justify-items:center;
    margin-top:40px;
}

.video-card{
    display:block;
    text-decoration:none;
    color:#222;
    text-align:center;
    max-width:280px;
}

.video-card img{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.3s;
}

.video-card:hover img{
    transform:translateY(-6px);
}

.video-card span{
    display:block;
    margin-top:15px;
    font-size:16px;
    font-weight:600;
}

/* YouTube Bölümü */

.youtube-channel{
    padding:70px 0;
    text-align:center;
}

.youtube-channel p{
    max-width:750px;
    margin:20px auto 35px;
    line-height:1.8;
}

/* Mobil */

@media (max-width:991px){

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

}

@media (max-width:768px){

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

.video-card{
    max-width:260px;
}

}
/* ================================
   HİZMET VERDİĞİMİZ BÖLGELER
================================ */

.service-areas{

padding:15px 10px;
background:#fff;

}

.service-areas .section-title{

max-width:900px;
margin:0 auto 40px;
text-align:center;

}

.service-areas .section-title h2{

color:#6D214F;
margin-bottom:15px;

}

.service-areas .section-title p{

color:#555;
line-height:1.8;

}

.area-title{

margin:45px 0 20px;
font-size:24px;
font-weight:700;
color:#6D214F;
text-align:center;

}

.service-areas-grid{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:16px;
margin-bottom:25px;

}

.service-areas-grid a{

display:flex;
align-items:center;
justify-content:center;

min-height:58px;

padding:14px 10px;

background:#faf7f9;

border:1px solid #eadfe6;

border-radius:12px;

text-decoration:none;

font-size:15px;
font-weight:600;

color:#6D214F;

cursor:default;

transition:.25s;

}

.service-areas-grid a:hover{

background:#6D214F;
color:#fff;
transform:translateY(-2px);

}

@media (max-width:992px){

.service-areas-grid{

grid-template-columns:repeat(4,1fr);

}

}

@media (max-width:768px){

.service-areas{

padding:15px 10px;

}

.area-title{

font-size:20px;
margin:35px 0 15px;

}

.service-areas-grid{

grid-template-columns:repeat(3,1fr);
gap:10px;

}

.service-areas-grid a{

font-size:13px;
min-height:50px;
padding:10px;

}

}