/*======================================================
  PARS STATİK
  STYLE.CSS
  V2.0
======================================================*/

/*=============================
RESET
=============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#0b0b0b;

    color:#ffffff;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/*=============================
CONTAINER
=============================*/

.container{

    width:92%;

    max-width:1550px;

    margin:auto;

}

/*=============================
HEADER
=============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:220px;

    background:rgba(10,10,10,.82);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:99999;

}

header .container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/*=============================
LOGO
=============================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:340px;

    width:auto;

    transition:.35s ease;

    filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));

}

.logo img:hover{

    transform:scale(1.03);

}

/*=============================
MENU
=============================*/

.menu{

    display:flex;

    align-items:center;

    gap:48px;

}

.menu a{

    color:#ffffff;

    font-size:17px;

    font-weight:600;

    letter-spacing:.4px;

    position:relative;

    transition:.35s;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d4af37;

    transition:.35s;

}

.menu a:hover{

    color:#d4af37;

}

.menu a:hover::after{

    width:100%;

}

.menu-button{

    display:none;

    font-size:36px;

    color:#ffffff;

    cursor:pointer;

}

/*=============================
HERO
=============================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    padding-top:220px;

    background:url("../images/hero.png") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.70)
    );

}

.hero-content{

    position:relative;

    z-index:10;

    width:90%;

    max-width:950px;

    text-align:center;

}

.hero-content h4{

    color:#d4af37;

    font-size:22px;

    letter-spacing:10px;

    margin-bottom:25px;

    font-weight:600;

}

.hero-content h1{

    font-size:82px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:28px;

}

.hero-content p{

    font-size:24px;

    color:#dddddd;

    margin-bottom:50px;

}

/*=============================
BUTONLAR
=============================*/

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

}

.btn{

    padding:18px 48px;

    background:#d4af37;

    color:#111;

    font-weight:700;

    border-radius:8px;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(212,175,55,.30);

}

.btn-outline{

    padding:18px 48px;

    border:2px solid #d4af37;

    color:#ffffff;

    border-radius:8px;

    transition:.35s;

}

.btn-outline:hover{

    background:#d4af37;

    color:#111;

}

/*=============================
SECTION TITLE
=============================*/

section{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:44px;

    margin-bottom:15px;

}

.section-title p{

    color:#bdbdbd;

    font-size:18px;

}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:992px){

header{

height:120px;

}

.logo img{

height:170px;

}

.menu{

display:none;

}

.menu-button{

display:block;

}

.hero{

padding-top:120px;

}

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn,
.btn-outline{

width:260px;

text-align:center;

}

}/*======================================================
SERVICES
======================================================*/

.services{

    background:#111111;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-card{

    background:linear-gradient(180deg,#1b1b1b,#121212);

    border:1px solid rgba(255,255,255,.05);

    border-radius:18px;

    padding:45px 35px;

    transition:.35s;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 18px 40px rgba(0,0,0,.45);

}

.service-card h3{

    font-size:24px;

    margin-bottom:20px;

    color:#d4af37;

}

.service-card p{

    color:#cfcfcf;

    line-height:1.8;

}

/*======================================================
ABOUT
======================================================*/

.about{

    background:#0d0d0d;

}

.about .container{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.about-left h2{

    font-size:48px;

    margin-bottom:30px;

}

.about-left p{

    font-size:18px;

    color:#cfcfcf;

    line-height:2;

    margin-bottom:20px;

}

.about-right{

    display:grid;

    gap:25px;

}

.stat{

    background:#181818;

    border-radius:18px;

    padding:35px;

    border-left:5px solid #d4af37;

    transition:.35s;

}

.stat:hover{

    transform:translateX(10px);

}

.stat h3{

    font-size:46px;

    color:#d4af37;

    margin-bottom:8px;

}

.stat span{

    color:#dddddd;

}

/*======================================================
PROJECTS
======================================================*/

.projects{

    background:#111;

}

.project-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.project-card{

    overflow:hidden;

    border-radius:20px;

    background:#1a1a1a;

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-image{

    height:280px;

    background:linear-gradient(135deg,#444,#222);

}

.project-info{

    padding:30px;

}

.project-info h3{

    font-size:24px;

    margin-bottom:15px;

}

.project-info p{

    color:#cfcfcf;

    line-height:1.7;

}

/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:1100px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

.project-grid{

grid-template-columns:repeat(2,1fr);

}

.about .container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.project-grid{

grid-template-columns:1fr;

}

.about-left h2{

font-size:36px;

}

.section-title h2{

font-size:34px;

}

}/*======================================================
CONTACT
======================================================*/

.contact{

    background:#0d0d0d;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-info h3{

    font-size:42px;

    color:#d4af37;

    margin-bottom:20px;

}

.contact-info p{

    color:#d5d5d5;

    font-size:18px;

    margin-bottom:15px;

    line-height:1.8;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:10px;

    color:#fff;

    font-size:16px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#d4af37;

}

.contact-form textarea{

    min-height:180px;

    resize:vertical;

}

.contact-form button{

    padding:18px;

    background:#d4af37;

    color:#111;

    font-size:17px;

    font-weight:700;

    border:none;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-4px);

}

/*======================================================
FOOTER
======================================================*/

footer{

    background:#080808;

    border-top:1px solid rgba(255,255,255,.06);

    padding:70px 0 30px;

}

.footer-container{

    width:92%;

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    width:260px;

}

footer h4{

    margin-bottom:20px;

    color:#d4af37;

}

footer a{

    color:#cfcfcf;

    line-height:2;

    transition:.3s;

}

footer a:hover{

    color:#d4af37;

}

footer p{

    color:#cfcfcf;

    line-height:1.9;

}

.copyright{

    margin-top:60px;

    text-align:center;

    color:#999;

    border-top:1px solid rgba(255,255,255,.05);

    padding-top:25px;

}

/*======================================================
WHATSAPP
======================================================*/

.whatsapp{

    position:fixed;

    right:30px;

    bottom:30px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.4);

    z-index:99999;

    transition:.35s;

}

.whatsapp:hover{

    transform:scale(1.08);

}

/*======================================================
SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#d4af37;

    border-radius:30px;

}

/*======================================================
TEXT SELECTION
======================================================*/

::selection{

    background:#d4af37;

    color:#111;

}

/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

.contact-container{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto;

}

.whatsapp{

width:60px;

height:60px;

font-size:28px;

right:20px;

bottom:20px;

}

}/*======================================================
PREMIUM HERO V2
======================================================*/

.hero{

    position:relative;

    width:100%;
    height:100vh;

    min-height:900px;

    padding-top:220px;

    background:
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.28)),
    url("../images/hero.png");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

}

.hero-content{

    width:92%;
    max-width:1300px;

    margin:auto;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    text-align:left;

}

.hero-content h4{

    font-size:20px;

    color:#d4af37;

    letter-spacing:12px;

    margin-bottom:30px;

}

.hero-content h1{

    font-size:92px;

    line-height:1.1;

    font-weight:800;

    max-width:900px;

    margin-bottom:30px;

}

.hero-content p{

    max-width:700px;

    font-size:24px;

    line-height:1.9;

    color:#d5d5d5;

    margin-bottom:60px;

}

.hero-buttons{

    justify-content:flex-start;

}

.hero::after{

content:"";

position:absolute;

right:-180px;

top:50%;

transform:translateY(-50%) rotate(25deg);

width:500px;

height:500px;

border:2px solid rgba(212,175,55,.10);

}

.hero::before{

content:"";

position:absolute;

right:100px;

top:50%;

transform:translateY(-50%);

width:320px;

height:320px;

border:2px solid rgba(212,175,55,.15);

}/*==================================================
 PREMIUM HEADER
==================================================*/

header{

transition:.45s;

}

header.scrolled{

height:140px;

background:rgba(5,5,5,.96);

box-shadow:0 20px 45px rgba(0,0,0,.45);

}

header.scrolled .logo img{

height:250px;

}

/*==================================================
 GOLD LINE
==================================================*/

header::after{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:2px;

background:linear-gradient(90deg,
transparent,
#b68c2d,
#d4af37,
#f0d47a,
#d4af37,
#b68c2d,
transparent);

opacity:.75;

}

/*==================================================
 GLASS CARD
==================================================*/

.service-card{

background:rgba(255,255,255,.03);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

}

/*==================================================
 SERVICE ICON
==================================================*/

.service-card::before{

content:"";

display:block;

width:70px;

height:70px;

margin-bottom:25px;

border-radius:14px;

background:linear-gradient(135deg,#d4af37,#8b6b1d);

}

/*==================================================
 SERVICE HOVER
==================================================*/

.service-card:hover{

transform:translateY(-18px);

box-shadow:

0 20px 45px rgba(0,0,0,.45),

0 0 25px rgba(212,175,55,.12);

}

/*==================================================
 BUTTON EFFECT
==================================================*/

.btn{

position:relative;

overflow:hidden;

}

.btn::before{

content:"";

position:absolute;

left:-120%;

top:0;

width:100%;

height:100%;

background:rgba(255,255,255,.22);

transform:skewX(-25deg);

transition:.7s;

}

.btn:hover::before{

left:130%;

}

/*==================================================
 PROJECT BOX
==================================================*/

.project-card{

border:1px solid rgba(255,255,255,.05);

}

.project-card:hover{

border-color:#d4af37;

}

/*==================================================
 NUMBER BOX
==================================================*/

.stat{

border:1px solid rgba(255,255,255,.04);

}

.stat:hover{

background:#1b1b1b;

border-color:#d4af37;

}/*==================================================
PREMIUM EFFECT V3
==================================================*/

/* Arka plan */

body{

background:
linear-gradient(
180deg,
#080808 0%,
#101010 25%,
#0d0d0d 50%,
#090909 100%);

}

/* Bölüm Geçişleri */

.services,
.about,
.projects,
.contact{

position:relative;

overflow:hidden;

}

.services::before,
.about::before,
.projects::before,
.contact::before{

content:"";

position:absolute;

top:-300px;

right:-300px;

width:600px;

height:600px;

background:radial-gradient(
circle,
rgba(212,175,55,.06),
transparent 70%);

pointer-events:none;

}

/* Premium Başlık */

.section-title h2{

font-size:52px;

font-weight:800;

letter-spacing:2px;

}

.section-title h2::after{

content:"";

display:block;

width:90px;

height:4px;

margin:20px auto 0;

background:#d4af37;

border-radius:30px;

}

/* Hizmet Kartları */

.service-card{

position:relative;

overflow:hidden;

}

.service-card::after{

content:"";

position:absolute;

left:-150%;

top:0;

width:60%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.10),
transparent);

transform:skewX(-25deg);

transition:.8s;

}

.service-card:hover::after{

left:170%;

}

/* Proje Kutuları */

.project-card{

position:relative;

overflow:hidden;

}

.project-card::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:100%;

height:4px;

background:#d4af37;

transform:scaleX(0);

transition:.35s;

}

.project-card:hover::before{

transform:scaleX(1);

}

/* Hero Yazıları */

.hero h1{

text-shadow:

0 8px 25px rgba(0,0,0,.45);

}

.hero p{

text-shadow:

0 5px 18px rgba(0,0,0,.45);

}

/* Altın Parlama */

.btn{

box-shadow:

0 0 25px rgba(212,175,55,.20);

}

.btn:hover{

box-shadow:

0 0 40px rgba(212,175,55,.45);

}

/* Kart Radius */

.service-card,
.project-card,
.stat{

border-radius:24px;

}/*==================================================
MOBİL MENÜ
==================================================*/

.menu-button{

display:none;

width:55px;
height:55px;

justify-content:center;
align-items:center;

border:1px solid rgba(255,255,255,.10);

border-radius:12px;

background:rgba(255,255,255,.03);

cursor:pointer;

transition:.35s;

}

.menu-button:hover{

background:#d4af37;

color:#111;

}

@media(max-width:992px){

.menu{

position:fixed;

top:120px;

left:-100%;

width:100%;

background:#111;

display:flex;

flex-direction:column;

padding:40px;

gap:30px;

transition:.4s;

}

.menu.active{

left:0;

}

.menu-button{

display:flex;

}

.menu a{

font-size:20px;

}

}

/*==================================================
ANIMATION
==================================================*/

.fade{

opacity:0;

transform:translateY(60px);

transition:1s;

}

.fade.show{

opacity:1;

transform:none;

}/*==================================================
 PREMIUM SERVICES V2
==================================================*/

.service-card{

position:relative;

padding:55px 40px;

border-radius:24px;

background:

linear-gradient(
180deg,
rgba(255,255,255,.05),
rgba(255,255,255,.02));

border:1px solid rgba(255,255,255,.05);

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(
90deg,
#8b6b1d,
#d4af37,
#f2d88b);

transform:scaleX(0);

transform-origin:left;

transition:.45s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card h3{

font-size:28px;

margin-bottom:20px;

color:white;

transition:.35s;

}

.service-card:hover h3{

color:#d4af37;

}

.service-card p{

font-size:17px;

line-height:1.9;

color:#cfcfcf;

}

.service-card:hover{

transform:translateY(-14px);

box-shadow:

0 20px 60px rgba(0,0,0,.45),

0 0 35px rgba(212,175,55,.12);

}/*==================================================
 PREMIUM HERO TITLE
==================================================*/

.hero h1{

font-size:96px;

font-weight:900;

letter-spacing:2px;

max-width:900px;

}

.hero h1 span{

color:#d4af37;

}

.hero p{

font-size:25px;

max-width:700px;

}

.hero::after{

content:"";

position:absolute;

right:-120px;

top:50%;

transform:translateY(-50%) rotate(45deg);

width:420px;

height:420px;

border:2px solid rgba(212,175,55,.12);

}

.hero::before{

content:"";

position:absolute;

right:120px;

top:50%;

transform:translateY(-50%);

width:260px;

height:260px;

border:2px solid rgba(212,175,55,.18);

}/*==================================================
 PREMIUM SECTION BACKGROUNDS
==================================================*/

.services{

    background:
    linear-gradient(180deg,#101010,#0c0c0c);

}

.about{

    background:
    linear-gradient(180deg,#0c0c0c,#151515);

}

.projects{

    background:
    linear-gradient(180deg,#151515,#0f0f0f);

}

.contact{

    background:
    linear-gradient(180deg,#0f0f0f,#090909);

}

/*==================================================
 PREMIUM CARD BORDER
==================================================*/

.service-card,
.project-card,
.stat{

    position:relative;

}

.service-card::before,
.project-card::before,
.stat::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:24px;

    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(212,175,55,.25),
        transparent,
        rgba(255,255,255,.05));

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}

/*==================================================
 PREMIUM TITLE
==================================================*/

.section-title{

    margin-bottom:90px;

}

.section-title h2{

    text-transform:uppercase;

    font-weight:800;

    letter-spacing:3px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

/*==================================================
 HOVER ZOOM
==================================================*/

.project-card{

    transition:.45s;

}

.project-card:hover{

    transform:translateY(-12px) scale(1.02);

}

/*==================================================
 CONTACT INPUT
==================================================*/

.contact-form input,
.contact-form textarea{

    transition:.35s;

}

.contact-form input:hover,
.contact-form textarea:hover{

    border-color:#d4af37;

}

/*==================================================
 FOOTER
==================================================*/

footer{

    position:relative;

}

footer::before{

content:"";

position:absolute;

top:0;

left:50%;

transform:translateX(-50%);

width:300px;

height:2px;

background:#d4af37;

}/*======================================================
PREMIUM V4
======================================================*/

/* SECTION SPACING */

section{

padding:140px 0;

}

/* GOLD DIVIDER */

.section-title{

position:relative;

padding-bottom:35px;

}

.section-title::after{

content:"";

position:absolute;

left:50%;

bottom:0;

transform:translateX(-50%);

width:120px;

height:3px;

background:linear-gradient(
90deg,
transparent,
#d4af37,
transparent);

}

/* ABOUT */

.about-left{

padding-right:60px;

}

.about-left h2{

font-size:56px;

margin-bottom:35px;

}

.about-left p{

font-size:18px;

line-height:2;

color:#cfcfcf;

}

/* NUMBER BOX */

.about-right{

display:grid;

gap:30px;

}

.stat{

padding:40px;

background:

linear-gradient(
180deg,
rgba(255,255,255,.04),
rgba(255,255,255,.02));

border-radius:24px;

transition:.45s;

}

.stat h3{

font-size:58px;

color:#d4af37;

margin-bottom:10px;

}

.stat span{

font-size:18px;

color:#ddd;

}

.stat:hover{

transform:translateX(15px);

}

/* FOOTER */

footer{

background:#050505;

}

.footer-container{

align-items:start;

}

.footer-container h4{

font-size:22px;

margin-bottom:25px;

}

.footer-container a{

display:inline-block;

margin-bottom:10px;

}

.footer-container a:hover{

transform:translateX(6px);

}

.footer-logo{

width:300px;

}

/* COPYRIGHT */

.copyright{

font-size:15px;

letter-spacing:.5px;

}

/* HOVER EFFECT */

.service-card,
.project-card,
.stat{

will-change:transform;

}.menu a.active{

color:#d4af37;

}

.menu a.active::after{

width:100%;

}/*======================================================
 PREMIUM V5
 3D LIGHT EFFECT
======================================================*/

/* Sayfa Arkaplanı */

body{

background:

radial-gradient(circle at top right,
rgba(212,175,55,.05),
transparent 35%),

radial-gradient(circle at bottom left,
rgba(255,255,255,.02),
transparent 30%),

#090909;

}

/* Hero */

.hero{

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

top:-350px;

right:-250px;

width:900px;

height:900px;

border-radius:50%;

background:

radial-gradient(circle,
rgba(212,175,55,.08),
transparent 70%);

animation:heroGlow 8s linear infinite;

}

@keyframes heroGlow{

0%{

transform:rotate(0deg);

}

100%{

transform:rotate(360deg);

}

}

/* Premium Cam */

.service-card,
.project-card,
.stat{

background:

linear-gradient(

180deg,

rgba(255,255,255,.05),

rgba(255,255,255,.015));

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

}

/* Premium Shadow */

.service-card:hover,
.project-card:hover,
.stat:hover{

box-shadow:

0 30px 80px rgba(0,0,0,.55),

0 0 30px rgba(212,175,55,.10);

}

/* Başlık */

.hero h1{

text-shadow:

0 15px 30px rgba(0,0,0,.45);

}

/* Altın Yazı */

.section-title h2{

background:

linear-gradient(
90deg,
#ffffff,
#d4af37);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

/* Buton */

.btn{

letter-spacing:1px;

}

.btn:hover{

letter-spacing:2px;

}

/* Scroll */

html{

scroll-padding-top:220px;

}/*=========================================
WHATSAPP
=========================================*/

.whatsapp{

position:fixed;

right:35px;

bottom:35px;

width:72px;

height:72px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

box-shadow:

0 20px 45px rgba(0,0,0,.45);

z-index:999999;

transition:.35s;

animation:whats 2.5s infinite;

}

.whatsapp:hover{

transform:scale(1.12);

}

@keyframes whats{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}
}