body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: white;
}

header {
    background: black;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 50px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #8b0000;
}

.hero {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://images.unsplash.com/photo-1601506521793-dc748fc80b67") center/cover;
    
}

.hero h1 {
    font-size: 48px;
    color: #8b0000;
}

.section {
    padding: 20px 15px;
    max-width: 1100px;
    margin: auto;
}


.footer {
    background: black;
    text-align: center;
    padding: 0px;
    margin-top: auto;
    color: white;
    z-index: 999;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #8b0000;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

.logo img {
    height: 60px;
    width: 85px;
    image-rendering: crisp-edges;
}


 .whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    padding: 6px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

 .instagram-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    padding: 6px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: 9999;
}

.phone-btn {
    position: fixed;
    right: 20px;
    bottom: 140px;
    background: #8b0000;
    padding: 9px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    z-index: 9999;
}

.text-white {
    color:white;
    text-decoration: none;
}

.blur-img {
  filter: blur(5px);
  backdrop-filter: blur(px); 
}
/* ====== HİZMET KARTLARI YENİ TASARIM ====== */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #8b0000;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(139,0,0,0.45);
    border-color: #8b0000;
}

.service-card .icon {
    font-size: 46px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #8b0000;
    margin-bottom: 10px;
}

.service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.icon {
    height: 30px;
    width: 30px;
    
}

.references {
    padding: 10px 10px;
}

.references h3 {
    text-align: center;
    color: #8b0000;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.ref-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ref-item {
    text-align: center;
    margin: 10px;
}

.ref-item img {
    height: 60px;
    width: auto;
    margin-bottom: 5px;
}

.ref-item p {
    font-size: 12px;
    margin: 0;
    color: #ccc;
}

.video-fit {
    width: 100%;
    height: auto;
}

.video-row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
}

.video-item {
    flex: 1;
}

.photo-row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 20px;
}

.photo-item {
    flex: 1;
}

.single-row {
    justify-content: center;
}

.grid-section {
    padding: 40px 20px;
}

.grid-container {
    display: grid;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #3a3a3a;
    color: white;
}

.grid-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.grid-item h3 {
    color: #8b0000;
    margin-bottom: 15px;
}

.section h2 {
    text-align: center;
    color: #8b0000;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 30px;
}


