﻿.section-title h2 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.section-title h2::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #b48a47;
    display: block;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.box {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .content {
    padding: 40px;
    max-width: 85%;
}

.box h4 {
    font-size: 35px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.box p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.box ul {
    padding-left: 16px;
}

.box ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.services-grid ul {
    list-style: none;
    padding-left: 0;
}

.services-grid ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.services-grid ul li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 10px;
    color: #ffffff;
}

.gold {
    background: #a67c3c;
    color: #fff;
}

.light {
    background: #e7e5e3;
    color: #222;
}

.dark {
    background: #1c1917;
    color: #fff;
}

.box.light ul li::before {
    color: #000000;
}

.box.dark ul li::before {
    color: #c6a54b;
}
.box.image {
    padding: 0;
}

.box.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.services-grid > .box:nth-child(-n+6) {
    grid-column: span 2;
}

.services-grid > .wide {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .box {
        min-height: 260px;
    }
}

.crafting-excellence {
    background: #f5f3f1;
    padding: 30px 0;
}

.crafting-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
}

.crafting-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.2;
}

.craft-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.craft-item span {
    font-size: 18px;
    color: #b48a47;
    font-weight: 600;
    min-width: 30px;
}

.craft-item h5 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.craft-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.craft-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    border: 1px solid #000;
    font-size: 13px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease;
}

.craft-btn:hover {
    background: #000;
    color: #fff;
}

.crafting-image {
    position: relative;
    text-align: center;
}

.crafting-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.quote-circle {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #d9cfc2;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-circle p {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    color: #333;
}


@media (max-width: 992px) {
    .crafting-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap:10px;
    }

    .craft-item {
        justify-content: center;
    }

    .quote-circle {
        left: 80%;
        bottom: 0%;
        transform: translateX(-50%);
    }

    .box h4 {
        font-size: 25px;
    }
}