.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 260px;
    object-fit: cover;
}

.table td {
    padding: 12px;
}

.card-title {
    font-weight: 700;
}

.hero-slider {
    margin-top: 0;
}

.carousel-item {
    height: 85vh;
    min-height: 650px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 50%;
    transform: translateY(50%);
    max-width: 700px;
    text-align: left;
    left: 10%;
    right: auto;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50%;
}

.btn-warning {
    font-weight: 600;
    padding: 12px 30px;
}

@media (max-width: 992px) {

    .carousel-item {
        height: 65vh;
        min-height: 500px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

.footer-area {
    background: #1f2937;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ffc107;
    display: block;
    margin-top: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: .3s;
}

.footer-menu a:hover {
    color: #ffc107;
    padding-left: 8px;
}

.footer-menu a.active {
    color: #ffc107;
    padding-left: 8px;
}

.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-row i {
    color: #ffc107;
    width: 20px;
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: white;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}

.social-icons a:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
}

.footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255,255,255,.1);
}

.copyright {
    color: #9ca3af;
    font-size: .95rem;
}

.why-us {
    background: #f8f9fa;
}

.why-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transition: all .35s ease;
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #ffc107;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(255,193,7,.15);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;
}

.icon-box i {
    font-size: 36px;
    color: #ffc107;
    transition: .35s;
}

.why-card:hover .icon-box {
    background: #ffc107;
    transform: rotateY(180deg);
}

.why-card:hover .icon-box i {
    color: #fff;
    transform: rotateY(180deg);
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    border-top: 5px solid #ffc107;
}

.contact-header {
    text-align: center;
    margin-bottom: 25px;
}

.contact-header i {
    font-size: 55px;
    color: #ffc107;
    margin-bottom: 15px;
}

.contact-header h3 {
    font-weight: 700;
    margin: 0;
}

.contact-text {
    text-align: center;
    color: #6c757d;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.info-row i {
    color: #ffc107;
    width: 25px;
    text-align: center;
    font-size: 18px;
}

.action-buttons {
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
}

.services-section {
    background: #ffffff;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: #ffc107;

    transform: scaleX(0);
    transition: .35s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(255,193,7,.15);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .35s;
}

.service-icon i {
    font-size: 38px;
    color: #ffc107;
    transition: .35s;
}

.service-card:hover .service-icon {
    background: #ffc107;
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: scale(1.15);
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}

.scrap-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.scrap-card:hover {
    transform: translateY(-8px);
}

.scrap-card i {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 15px;
}

.scrap-card h6 {
    font-weight: 600;
    margin: 0;
}

.process-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card span {
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,193,7,.25);
}

.process-card i {
    font-size: 45px;
    color: #ffc107;
    margin-bottom: 20px;
}

.process-card h5 {
    margin: 0;
    font-weight: 600;
}

.why-big-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: center;
    height: 100%;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    transition: .3s;
}

.why-big-card:hover {
    transform: translateY(-8px);
}

.why-big-card i {
    font-size: 50px;
    color: #ffc107;
    min-width: 60px;
}

.why-big-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-big-card p {
    margin: 0;
    color: #6c757d;
}

.contact-page-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    height: 100%;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    border-top: 5px solid #ffc107;
}

.contact-line {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-line i {
    width: 50px;
    height: 50px;

    background: rgba(255,193,7,.15);

    color: #ffc107;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    flex-shrink: 0;
}

.contact-line p {
    margin: 0;
    color: #6c757d;
}

.map-card {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    min-height: 500px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.social-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    transition: .3s;
}

.social-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: #E1306C;
}

.facebook {
    background: #1877F2;
}

.phone {
    background: #ffc107;
    color: #212529;
}

.phone:hover {
    color: #212529;
}

.service-detail-card,
.step-card,
.cta-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.service-detail-card:hover,
.step-card:hover {
    transform: translateY(-8px);
}

.service-detail-card i {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 20px;
}

.service-detail-card ul {
    padding-left: 18px;
    margin-top: 20px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-card span {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,193,7,.2);
}

.step-card i {
    font-size: 45px;
    color: #ffc107;
    margin-bottom: 20px;
}

.advantage-item {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.advantage-item i {
    color: #ffc107;
    margin-right: 10px;
}

.cta-box {
    border-top: 5px solid #ffc107;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 100%;
}

.navbar-brand {
    color: #212529 !important;
    font-size: 1.3rem;
}

.navbar-brand span {
    color: #ffffff;
}

.price-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    transition: .3s;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card img {
    height: 220px;
    object-fit: cover;
}

.price-table td {
    font-size: .95rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}