/* ============================= */
/* WEDDING DESTINATIONS SECTION */
/* ============================= */

.wedding-destinations {
    padding: 100px 0;
    background: #f6f6f6;
    text-align: center;
}

/* Scoped container */
.wedding-destinations>.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Globe Icon */
.wedding-destinations .wedding-icon img {
    width: 80px;
    margin-bottom: 25px;
}

/* Title */
.wedding-destinations .wedding-title {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Gold Line */
.wedding-destinations .wedding-line {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin: 20px auto 60px;
}

/* Grid Layout */
.wedding-destinations .wedding-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

/* Remove default list style */
.wedding-destinations .wedding-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.wedding-destinations .wedding-list li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    color: #333;
}

/* Gold Check Icon */
.wedding-destinations .wedding-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #c7a54a;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .wedding-destinations .wedding-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wedding-destinations {
        padding: 70px 0;
    }

    .wedding-destinations .wedding-list {
        grid-template-columns: 1fr;
    }

    .wedding-destinations .wedding-title {
        font-size: 12px;
        letter-spacing: 2px;
    }
}