.appoinment__text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.appoinment__text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.appoinment__list ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.appoinment__list__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.appoinment__list__icon i {
    font-size: 24px;
    color: #fff;
}

.appoinment__list__text h5 {
    color: #1c1c1c;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.appoinment__list__text span {
    color: #666;
    font-size: 14px;
}

.appoinment__form {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 0;
}

.appoinment__form h3 {
    color: #1c1c1c;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.appoinment__form input,
.appoinment__form select,
.appoinment__form textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    color: #666;
    padding-left: 20px;
    margin-bottom: 20px;
    border-radius: 0;
}

.appoinment__form textarea {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.appoinment__form .datepicker__item {
    position: relative;
    margin-bottom: 20px;
}

.appoinment__form .datepicker__item i {
    position: absolute;
    right: 20px;
    top: 17px;
    color: var(--gold);
    font-size: 16px;
}

.appoinment__form button {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.appoinment__form button:hover {
    background: #1c1c1c;
}
.features__item__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.projects.spad {
    background: #f8f9fa;
}

.project__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.project__card__image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.project__card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project__card:hover .project__card__image img {
    transform: scale(1.1);
}

.project__card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project__card:hover .project__card__overlay {
    opacity: 1;
}

.view-project {
    width: 60px;
    height: 60px;
    background: var(--gold, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.project__card:hover .view-project {
    transform: scale(1);
}

.view-project:hover {
    background: #fff;
    color: var(--gold, #d4a574);
}

.project__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dark, #d4a574);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.project__card__content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.project__title a {
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project__title a:hover {
    color: var(--gold, #d4a574);
}

.project__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.meta__item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta__item i {
    color: var(--gold, #d4a574);
    font-size: 14px;
}

.project__description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat__item {
    text-align: center;
}

.stat__value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold, #d4a574);
    margin-bottom: 5px;
}

.stat__value .delta.positive {
    color: #28a745;
}

.stat__value .delta.negative {
    color: #dc3545;
}

.stat__label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1c1c1c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.project__link:hover {
    color: var(--gold, #d4a574);
    gap: 12px;
}

.project__link i {
    transition: transform 0.3s ease;
}

.project__link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .project__card__image {
        height: 240px;
    }

    .project__title {
        font-size: 18px;
    }

    .project__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .project__card {
        margin-bottom: 20px;
    }

    .project__card__content {
        padding: 25px 20px;
    }
}
