* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #212529;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.nav-link,
.btn,
.section-title {
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

section {
    overflow: hidden;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #0d6efd;
}

.text-accent {
    color: #ffc107;
}

.bg-primary-custom {
    background-color: #0d6efd;
}

.btn-primary-custom {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-outline-custom {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.btn-outline-custom:hover {
    background: #0d6efd;
    color: white;
}

/* Top Bar */
.top-bar {
    background: #212529;
    color: #f8f9fa;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar a {
    color: #f8f9fa;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.3s;
}

.top-bar a:hover {
    color: #ffc107;
}

.social-icons a {
    margin-left: 12px;
    font-size: 0.9rem;
}

/* Sticky Navbar */
.sticky-header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 1020;
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 600;
    color: #212529 !important;
    margin: 0 4px;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.btn-nav-call {
    background: #0d6efd;
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
}

/* Hero Carousel */
.carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.carousel-caption {
    z-index: 2;
    bottom: 25%;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

/* Cards */
.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.service-card img {
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover img {
    transform: scale(1.03);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Process steps */
.process-step {
    text-align: center;
    margin-bottom: 30px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: white;
    font-size: 32px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.3s;
}

/* Floating btns */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
    text-decoration: none;
}

.float-btn.call-btn {
    background: #0d6efd;
}

.float-btn.top-btn {
    background: #212529;
    position: relative;
    bottom: 0;
    right: 0;
}

.float-btn:hover {
    transform: scale(1.08);
    color: white;
}

footer {
    background: #111;
    color: #ddd;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.bottom-bar {
    background: #000;
    color: #aaa;
    font-size: 14px;
}

.inquiry-modal .modal-content {
    border-radius: 24px;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .top-bar .contact-info span {
        display: none;
    }

    .top-bar .contact-info a {
        margin-right: 8px;
    }
}