body {
    font-family: Arial, sans-serif;
    color: #333;
}
.bg-primary {
    background-color: #007BFF !important;
}
.btn-warning {
    background-color: #FD7E14;
    border-color: #FD7E14;
}
.carousel-item img {
    height: 500px;
    object-fit: cover;
}
a {
    color: #007BFF;
}
a:hover {
    color: #FD7E14;
}
.fixed-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    transition: all .3s ease;
    text-decoration: none;
}

.fab.whatsapp {
    background: #25D366;
}

.fab.whatsapp svg {
    width: 28px;
    height: 28px;
}

.fab.phone {
    background: #fd7e14;
}

.fab:hover {
    transform: scale(1.08);
}
body {
    font-family: 'Poppins', sans-serif;
}

/* PREMIUM HEADER */
.header-premium {
    background: linear-gradient(90deg, #0f172a, #020617);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-main {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.logo-sub {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1px;
}

.nav-premium .nav-link {
    color: #e5e7eb;
    margin-left: 25px;
    font-weight: 500;
    position: relative;
}

.nav-premium .nav-link:hover {
    color: #22c55e;
}

.nav-premium .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #22c55e;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-premium .nav-link:hover::after {
    width: 100%;
}
/* HAMBURGER ICON */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #020617;
    padding: 20px;
}

.mobile-menu a {
    color: #e5e7eb;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #1e293b;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #22c55e;
}
/* HERO ALANI */
.hero-area {
    min-height: 100vh;
    background: url("https://superiorplumbing.ca/wp-content/uploads/2022/12/Combi-Boiler-Repair2.jpg") center/cover no-repeat;
    position: relative;
}

.hero-area .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 15px;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 12px 28px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Diğer özelleştirmeler ekleyebilirsin */