/* =====================================================
   Project Detail Specific Styles
   ===================================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--light-color);
    padding: 1.5rem 0;
    margin-top: 120px; /* 48px (top bar) + 72px (header) */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--dark-color);
    font-weight: 500;
}

/* Project Hero Carousel */
.project-hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.project-hero-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), left 0s 0.8s;
}

.project-hero-slide.active {
    left: 0;
    transform: translateX(0);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.project-hero-slide.prev {
    left: 0;
    transform: translateX(-100%);
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Different background colors for each slide */
.project-hero-slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-hero-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-hero-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.project-hero-slide:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}
.container-eatonpark {
    background: url("../image/eatonpark-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.container-globalcity {
    background: url("../image/globalcity-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.container-theprive {
    background: url("../image/theprive-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.container-palmcity {
    background: url("../image/palmcity-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.container-lakeview {
    background: url("../image/lakeview-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.container-saigonsport {
    background: url("../image/saigonsport-container.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.project-hero-carousel .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.project-hero-content {
    max-width: 900px;
    color: var(--white);
}

.project-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-status {
    background: var(--success);
}

.badge-type {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.project-hero-location {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.95;
}

.project-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.project-hero-stats .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.project-hero-stats .stat i {
    font-size: 2rem;
    opacity: 0.9;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Project Hero Navigation Arrows */
.project-hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
}

.project-hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.project-hero-prev {
    left: 2rem;
}

.project-hero-next {
    right: 2rem;
}

/* Project Gallery */
.project-gallery {
    padding: 20px 0;
    /*background: var(--light-color);*/
    
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #987a52;
}

/* Carousel Wrapper with Peek Effect */
.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Carousel Container */
.gallery-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

/* Carousel Item */
.carousel-item {
    min-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-item.peek {
    opacity: 0.6;
    transform: scale(0.92);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item.active .carousel-caption {
    opacity: 1;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Thumbnails Container */
.gallery-thumbnails-container {
    overflow: hidden;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail-item {
    position: relative;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumb-overlay {
    opacity: 0.7;
}

.thumbnail-item.active .thumb-overlay {
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.5), rgba(37, 99, 235, 0.7));
}

.thumb-number {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Project Content */
.project-content {
    padding: 2rem 0;
    background: #f8f8f8;
}
.project-content .container {
/*    background: white;*/
}
.main-content {
    background: white;
    border-radius: 30px;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section .section-title {

    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;

}

.content-section .section-title i {
    color: var(--primary-color);
    padding: 0 0 0 20px;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Apartments Grid */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.apartment-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.apartment-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.apartment-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.05), transparent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.apartment-card h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.apartment-area,
.apartment-rooms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.apartment-area i,
.apartment-rooms i {
    color: var(--primary-color);
}

.apartment-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}
/*contend*/
.project-video {
    margin: 10px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/*Project table*/
/*.project-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .project-table tr {
        border-bottom: 1px solid #f0f0f0;
        transition: 0.3s ease;
    }

        .project-table tr:last-child {
            border-bottom: none;
        }

        .project-table tr:hover {
            background: #f9fafc;
        }

    .project-table td {
        padding: 14px 18px;
        vertical-align: top;
    }

        .project-table td:first-child {
            width: 30%;
            font-weight: 600;
            color: #1a1a1a;
            background: #fafafa;
        }

        .project-table td:last-child {
            width: 70%;
            color: #555;
        }

    .project-table a {
        color: #c5a35a;
        text-decoration: none;
        font-weight: 600;
    }

        .project-table a:hover {
            text-decoration: underline;
        }*/

    /* Style riêng cho list trong table */
    /*.project-table ul {
        padding-left: 18px;
        margin: 0;
    }

    .project-table li {
        margin-bottom: 6px;
    }*/

/* ===== CONTAINER ===== */
.content-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
}

    /* ===== PARAGRAPH ===== */
    .content-text p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 20px;
        color: #444;
    }

    /* ===== HEADING ===== */
    .content-text h2 {
        font-size: 28px;
        font-weight: 600;
        margin: 0px 0 20px;
        color: #111;
        position: relative;
    }

        /* Gạch chân gold luxury */
        .content-text h2::after {
            content: "";
            width: 60px;
            height: 3px;
            background: #c5a35a;
            position: absolute;
            left: 0;
            bottom: -8px;
        }

/* ===== TABLE ===== */
.project-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .project-table tr {
        border-bottom: 1px solid #f0f0f0;
        transition: 0.3s ease;
    }

        .project-table tr:hover {
            background: #f9fafc;
        }

    .project-table td {
        padding: 14px 18px;
        vertical-align: top;
        font-size: 15px;
    }

        .project-table td:first-child {
            width: 30%;
            font-weight: 600;
            background: #fafafa;
            color: #222;
        }

        .project-table td:last-child {
            width: 70%;
            color: #555;
        }

    .project-table a {
        color: #c5a35a;
        text-decoration: none;
    }

        .project-table a:hover {
            text-decoration: underline;
        }

/* ===== UL LIST ===== */
.content-text ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

    .content-text ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        font-size: 15.5px;
        line-height: 1.8;
        color: #444;
    }

        /* Bullet gold */
        .content-text ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 22px;
            color: #c5a35a;
        }

/* ===== IMAGE ===== */
.content-text img {
    width: 100%;
    border-radius: 14px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

    .content-text img:hover {
        transform: scale(1.02);
    }


/* Location List */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
}

.location-item i {
    color: var(--success);
    font-size: 1.25rem;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Payment Timeline */
.payment-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.payment-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-content p {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.payment-note i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.payment-note p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
    /*opacity: 0;
    visibility: hidden;*/
}
    .sidebar.show {
        opacity: 1;
        visibility: visible;
        position: fixed;
    }
.sidebar {
    position: fixed;
    /*bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;*/
    /* background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);*/
    z-index: 999;
}
.contact-card {
    background: url("../image/contact-card.png");
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
}
.price-card,
/*.contact-card,*/
.quick-contact-form,
.share-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.price-card h3,
.contact-card h3,
.quick-contact-form h3,
.share-card h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-from,
.price-to {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-separator {
    color: var(--text-light);
    font-size: 1.5rem;
}

.price-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 24px;
    flex-shrink: 0;
}

.contact-info-item .label {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-info-item .value {
    display: block;
    color: var(--dark-color);
    font-weight: 500;
}

.contact-info-item a.value {
    transition: var(--transition);
}

.contact-info-item a.value:hover {
    color: var(--primary-color);
}

/* Quick Contact Form */
.quick-contact-form .form-control {
    margin-bottom: 1rem;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.share-btn {
    aspect-ratio: 1;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.copy {
    background: var(--dark-color);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Related Projects */
.related-projects {
    padding: 4rem 0;
    background: var(--light-color);
}

.related-projects .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-projects .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Responsive Design for Project Detail */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        max-width: 100%;

    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        margin-top: 72px; /* Reset for mobile when top bar is hidden */
    }
    
    .project-hero-title {
        font-size: 2rem;
    }
    
    .project-hero-location {
        font-size: 1rem;
    }
    
    .project-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .gallery-carousel-wrapper {
        gap: 0.75rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .carousel-caption {
        font-size: 0.95rem;
        padding: 1.5rem 1rem 1rem;
    }
    
    .thumbnail-item {
        width: 90px;
        height: 60px;
    }
    
    .thumb-number {
        font-size: 0.875rem;
    }
    
    .features-grid,
    .apartments-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-timeline {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-hero {
        padding: 2rem 0;
    }
    
    .project-hero-title {
        font-size: 1.75rem;
    }
    
    .project-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .price-card,
    .contact-card,
    .quick-contact-form,
    .share-card {
        padding: 1.5rem;
    }
}