/* ============================================
   HOMEPAGE NEW SECTIONS
   Version: 1.0.2 - Fixed price box width
   ============================================ */

/* ===== 1. TAM THAO INTRO SECTION ===== */
.blackstones-intro {
    padding: 80px 0;
    background: #fff;
}

.blackstones-intro .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.blackstones-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blackstones-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blackstones-content h2 {
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.blackstones-subtitle {
    color: #d4a574;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blackstones-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-boxes {
    display: grid;
    gap: 15px;
    margin-bottom: 2rem;
}

.feature-box {
    background: rgba(212, 165, 116, 0.05);
    border-left: 4px solid #d4a574;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a574 0%, #c09060 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

/* ===== 2. SERVICE HIGHLIGHTS SECTION ===== */
.service-highlights {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4b8 100%);
    position: relative;
    overflow: hidden;
}

.service-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(212,165,116,0.1)"/></svg>');
    opacity: 0.3;
}

.highlights-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2a3a;
    margin-bottom: 70px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 160px 140px;
    position: relative;
    padding: 30px;
}

.highlight-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, #d4a574 0%, #b8925f 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.5);
    z-index: 10;
    text-align: center;
    padding: 45px;
}

.highlight-circle .big-number {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.highlight-circle .circle-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.highlight-card .number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #d4a574;
    line-height: 1;
    margin-bottom: 18px;
}

.highlight-card .text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}

.highlight-card .text strong {
    color: #1a2a3a;
    display: block;
    margin-top: 8px;
}

/* ===== 3. PRICING PACKAGES SECTION ===== */
.pricing-package {
    padding: 80px 0;
    background: #f9f7f2;
}

.pricing-package:nth-child(even) {
    background: #fff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.pricing-title-banner {
    display: inline-block;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid #d4a574;
    border-radius: 50px;
    padding: 15px 50px;
    position: relative;
}

.pricing-title-banner h2 {
    font-size: 1.8rem;
    color: #1a2a3a;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.pricing-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-details li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.pricing-details li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 1.2rem;
}

.price-boxes {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.price-box {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: #fff;
    border: 3px solid;
    padding: 30px 25px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-box.hoa-tang {
    border-color: #c44;
}

.price-box.an-tang {
    border-color: #d4a574;
}

.price-box .label {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-box.hoa-tang .label {
    color: #c44;
}

.price-box.an-tang .label {
    color: #d4a574;
}

.price-box .amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a2a3a;
    white-space: nowrap;
    line-height: 1.3;
}

.price-box .currency {
    font-size: 0.85rem;
    color: #666;
    vertical-align: super;
    margin-left: 2px;
}

.pricing-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 42, 58, 0.9);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===== 4. SERVICES SHOWCASE SECTION ===== */
.services-showcase {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-showcase-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-showcase-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-showcase-card:hover .service-showcase-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 42, 58, 0.8), transparent);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.service-showcase-card:hover .service-overlay {
    opacity: 1;
}

.service-showcase-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-showcase-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.btn-service-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4a574;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-more:hover {
    color: #c09060;
    gap: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blackstones-intro .container {
        gap: 40px;
    }

    .highlights-grid {
        gap: 120px 100px;
    }

    .highlight-circle {
        width: 300px;
        height: 300px;
    }

    .pricing-content {
        grid-template-columns: 55% 45%;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-showcase-image {
        height: 220px;
    }

    .blackstones-intro .container {
        grid-template-columns: 1fr;
    }

    .blackstones-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }

    .highlight-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 30px auto;
        width: 280px;
        height: 280px;
    }

    .highlight-card {
        padding: 30px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
    }

    .price-boxes {
        flex-direction: column;
    }

    .pricing-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .blackstones-content h2 {
        font-size: 2rem;
    }

    .highlights-title {
        font-size: 1.8rem;
    }

    .highlight-card .number {
        font-size: 3.5rem;
    }

    .highlight-circle .big-number {
        font-size: 3rem;
    }

    .pricing-gallery {
        grid-template-columns: 1fr;
    }
}