*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#ffffff;
color:#0a1f33;
}

/* HEADER */
.header{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 60px;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
z-index:1000;
}

.logo{
height:55px;
}

.nav a{
margin-left:25px;
text-decoration:none;
color:#0a1f33;
font-weight:600;
}

.nav a:hover{
color:#0077b6;
}

/* HERO */
.hero{
height:90vh;
background:url("../images/hero.jpg") center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,20,40,0.55);
}

.hero-content{
position:relative;
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.btn{
background:#0077b6;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:4px;
}

/* SPLIT SECTION */
.split{
display:flex;
align-items:center;
padding:90px 80px;
gap:60px;
}

.split img{
width:100%;
border-radius:8px;
}

.split-text{
max-width:500px;
}

/* CARDS */
.cards{
display:flex;
justify-content:center;
gap:40px;
padding:80px;
background:#f3f6f9;
}

.card{
background:white;
width:300px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
border-radius:8px;
overflow:hidden;
transition:0.4s;
text-align:center;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card:hover{
transform:translateY(-10px);
}

/* GLOBAL */
.global{
text-align:center;
padding:90px;
}

/* FOOTER */
footer{
background:#0a1f33;
color:white;
text-align:center;
padding:25px;
}
/* PAGE HERO */

.page-hero{
height:40vh;
background:url("../images/hero.jpg") center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
color:white;
text-align:center;
position:relative;
margin-top:80px;
}

.page-hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,20,40,0.65);
}

.page-hero h1{
position:relative;
z-index:2;
font-size:40px;
letter-spacing:1px;
}
/* ===== ABOUT HERO ===== */

.about-hero{
    height:45vh;
    background:url("../images/about-bg.jpg") center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(5,20,35,0.85),
        rgba(5,20,35,0.65)
    );
}

.about-hero-text{
    position:relative;
    color:white;
    animation:fadeUp 1.2s ease;
}

.about-hero-text h1{
    font-size:44px;
    margin-bottom:10px;
}

.about-hero-text p{
    font-size:18px;
    opacity:0.9;
}


/* ===== ABOUT SECTION PREMIUM ===== */

.about-section{
    padding:90px 20px;
    background:linear-gradient(180deg,#071420,#0b2c4d);
}

.about-container{
    max-width:1100px;
    margin:auto;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    padding:60px;
    border-radius:14px;
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    color:white;
    animation:fadeUp 1s ease;
}

.page-title{
    text-align:center;
    font-size:38px;
    margin-bottom:30px;
}


/* ===== SERVICE CARDS GLASS EFFECT ===== */

.service-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    padding:22px;
    border-radius:10px;
    text-align:center;
    transition:0.4s;
    backdrop-filter:blur(10px);
}

.service-card:hover{
    transform:translateY(-8px) scale(1.03);
    background:#00c3ff;
    color:#001018;
}


/* ===== INFO BOX ===== */

.info-box{
    background:rgba(255,255,255,0.08);
    padding:25px;
    border-left:4px solid #00c3ff;
    margin-top:15px;
    border-radius:6px;
}


/* ===== FOUNDER MESSAGE ===== */

.founder-box{
    background:linear-gradient(135deg,#00c3ff,#0077ff);
    padding:35px;
    border-radius:10px;
    margin-top:25px;
    line-height:1.9;
    color:#001018;
    font-style:italic;
    box-shadow:0 10px 35px rgba(0,0,0,0.3);
}


/* ===== ANIMATION ===== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== GLOBAL PAGE DESIGN ===== */

.page-hero{
height:40vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(rgba(5,20,35,0.75),
rgba(5,20,35,0.75)),
url("../images/hero.jpg") center/cover no-repeat;
}

.page-hero h1{
font-size:42px;
letter-spacing:1px;
animation:fadeUp 1s ease;
}

/* CONTENT AREA */
.page-content{
max-width:1100px;
margin:auto;
padding:60px 20px;
line-height:1.7;
animation:fadeUp 1s ease;
}

.page-content h2{
color:#00c3ff;
margin-top:40px;
}

/* SERVICE LIST */
.service-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

.service-box{
background:#0c2235;
padding:25px;
border-radius:12px;
transition:0.4s;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.service-box:hover{
transform:translateY(-8px);
background:#00c3ff;
color:#001018;
}

/* ANIMATION */
@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}


/* ABOUT DESIGN */

.about-block{
margin-bottom:40px;
}

.about-split{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.mission-box,
.vision-box{
background:#0c2235;
padding:25px;
border-radius:12px;
transition:0.4s;
}

.mission-box:hover,
.vision-box:hover{
transform:translateY(-6px);
background:#00c3ff;
color:#001018;
}

.founder-message{
margin-top:60px;
background:#081a2a;
padding:30px;
border-left:4px solid #00c3ff;
border-radius:8px;
}

.signature{
margin-top:20px;
font-weight:bold;
color:#00c3ff;
}

/* TEXT COLOR FIX */

.page-content,
.page-content p,
.page-content h2,
.page-content h3{
color:blacks;
}

/* SERVICE BOX TEXT */
.service-box{
color:white;
}

.service-box:hover{
color:#001018;
}

/* MISSION & VISION */
.mission-box,
.vision-box{
color:white;
}

.mission-box:hover,
.vision-box:hover{
color:#001018;
}

/* FOUNDER MESSAGE */
.founder-message{
color:blue;
}


/* ===== SERVICES PAGE ===== */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
margin-top:40px;
}

.service-card{
background:#0c2235;
padding:30px;
border-radius:14px;
transition:0.4s;
box-shadow:0 15px 35px rgba(0,0,0,0.45);
position:relative;
overflow:hidden;
animation:fadeUp 0.8s ease;
}

.service-card h3{
color:#00c3ff;
margin-bottom:15px;
}

.service-card p{
color:white;
line-height:1.6;
}

/* HOVER EFFECT */
.service-card:hover{
transform:translateY(-10px) scale(1.02);
background:#00c3ff;
}

.service-card:hover h3,
.service-card:hover p{
color:#001018;
}

/* LIGHT ANIMATION STRIPE */
.service-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,255,255,0.2),transparent);
transition:0.6s;
}

.service-card:hover::before{
left:100%;
}

/* ===== LOCATIONS PAGE ===== */

.location-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:50px;
}

.location-card{
background:#0c2235;
padding:30px;
border-radius:14px;
transition:0.4s;
box-shadow:0 15px 35px rgba(0,0,0,0.45);
animation:fadeUp 0.8s ease;
}

.location-card h2{
color:#00c3ff;
margin-bottom:20px;
}

.location-card ul{
list-style:none;
padding:0;
}

.location-card li{
padding:8px 0;
border-bottom:1px solid rgba(255,255,255,0.1);
}

.location-card:hover{
transform:translateY(-10px);
background:#0a3a5a; /* ⭐ kurumsal koyu mavi */
color:white;
}

.location-card:hover h2{
color:white;
}

.location-card:hover li{
color:white;
}

/* ===== QUOTE FORM ===== */

.quote-form{
margin-top:40px;
animation:fadeUp 1s ease;
}

.form-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-bottom:20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
width:100%;
padding:14px;
border-radius:8px;
border:none;
background:#0c2235;
color:white;
font-size:15px;
outline:none;
transition:0.3s;
}

.quote-form textarea{
min-height:140px;
resize:none;
margin-top:10px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
background:#12324b;
box-shadow:0 0 10px rgba(0,195,255,0.4);
}

/* BUTTON */
.quote-btn{
margin-top:25px;
background:#00c3ff;
border:none;
padding:15px 35px;
font-size:16px;
font-weight:bold;
cursor:pointer;
border-radius:8px;
transition:0.3s;
color:#001018;
}

.quote-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 20px rgba(0,195,255,0.5);
}

/* ===== CONTACT PAGE ===== */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;
}

/* LEFT SIDE */
.contact-info{
animation:fadeUp 1s ease;
}

.contact-box{
background:#0c2235;
padding:20px;
margin-top:20px;
border-radius:10px;
transition:0.3s;
}

.contact-box:hover{
background:#0a3a5a;
transform:translateY(-5px);
}

/* RIGHT FORM */
.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
animation:fadeUp 1s ease;
}

.contact-form input,
.contact-form textarea{
padding:14px;
border:none;
border-radius:8px;
background:#0c2235;
color:white;
outline:none;
}

.contact-form textarea{
min-height:140px;
resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
background:#12324b;
box-shadow:0 0 10px rgba(0,195,255,0.4);
}

/* MOBILE */
@media(max-width:900px){
.contact-grid{
grid-template-columns:1fr;
}
}
/* CONTACT TEXT FIX */

.contact-info,
.contact-info p,
.contact-info h2,
.contact-info h3{
color:black;
}

/* CONTACT BOX TEXT */
.contact-box{
color:white;
}

.contact-box p{
color:white;
}

/* HOVER DURUMUNDA DA BEYAZ KALSIN */
.contact-box:hover,
.contact-box:hover p,
.contact-box:hover h3{
color:white;
}

/* ===== HOME SERVICE CARDS (FINAL CLEAN VERSION) ===== */

.card-area{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
padding:60px 40px;
max-width:1200px;
margin:auto;
}

.card{
height:220px;
border-radius:14px;
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
font-weight:bold;
color:white;
background-size:cover;
background-position:center;
position:relative;
overflow:hidden;
transition:0.5s;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
cursor:pointer;
}

/* DARK OVERLAY */
.card::after{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,15,30,0.55);
top:0;
left:0;
}

/* TEXT ÜSTE */
.card span{
position:relative;
z-index:2;
}

/* HOVER EFFECT */
.card:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 20px 45px rgba(0,195,255,0.35);
}
/* CARD BACKGROUNDS */

.card:nth-child(1){
background-image:url("../images/inspection.jpg");
}

.card:nth-child(2){
background-image:url("../images/draftsurvey.jpg");
}

.card:nth-child(3){
background-image:url("../images/lashing.jpg");
}

.card:nth-child(4){
background-image:url("../images/cargosurvey.jpg");
}

/* ===== SERVICE CARDS LAYOUT ===== */

.cards{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    padding:40px 20px;
}

.card{
    width:300px;
    height:220px;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card h3{
    position:absolute;
    bottom:15px;
    left:0;
    right:0;
    color:white;
    font-size:20px;
    font-weight:600;
    text-shadow:0 2px 6px rgba(0,0,0,0.7);
}

