.ornate-border {
    border: 3px double #d4af37;
    padding: 2rem;
    background-color: #1f1f1f;
    border-radius: 10px;
}

/* Service Grids */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #292929;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
}

/* Exclusive Items */
.exclusive-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.exclusive-item {
    display: flex;
    align-items: center;
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-left: 4px solid #d4af37;
    border-radius: 10px;
}

.exclusive-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.details-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #d4af37;
    color: #1c1c1c;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Testimonials */
.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: #1f1f1f;
    padding: 2rem;
    border-left: 5px solid #d4af37;
    border-radius: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.service-cta {
    text-align: center;
    background-color: #2d2d2d;
    padding: 4rem 2rem;
    border-top: 2px solid #d4af37;
}

.cta-button {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #d4af37;
    color: #1c1c1c;
    border-radius: 5px;
    font-weight: bold;
}
.special-services {
    background-color: #1e1a16;
    color: #f5e9dc;
    padding: 4rem 2rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.special-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d2b48c;
    position: relative;
}

.special-services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c59d5f;
    margin: 0.5rem auto 0;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exclusive-item {
    background-color: #2b2520;
    border: 1px solid #4b3a2f;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exclusive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.exclusive-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e6c994;
}

.exclusive-info h3 {
    font-size: 1.5rem;
    color: #f0dab1;
    margin-bottom: 0.5rem;
}

.exclusive-info p {
    font-size: 1rem;
    color: #dcd3c3;
    margin-bottom: 1.5rem;
}

.details-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #c59d5f;
    color: #1e1a16;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.details-button:hover {
    background-color: #a67c52;
    color: #fff5e1;
}
