/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    color: #1c1c1c;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Items */
.services__item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.services__item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.services__item__pic {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.services__item__pic::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s;
}

.services__item:hover .services__item__pic::before {
    background: rgba(0, 0, 0, 0.5);
}

.services__item__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.services__item__icon i {
    font-size: 60px;
    color: #fff;
    opacity: 0.9;
}

.services__item__text {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.services__item__text h4 {
    color: #1c1c1c;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services__item__text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.services__item__text a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    transition: all 0.3s;
}

.services__item__text a:hover {
    background: #1c1c1c;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px;
    display: none;
}

.loading-spinner.active {
    display: block;
}

.loading-spinner i {
    font-size: 40px;
    color: var(--gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-more-services {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
    display: none;
}

.no-more-services.active {
    display: block;
}

/* Call to Action */
.callto {
    position: relative;
    background-position: center center;
    background-size: cover;
}

.callto::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.callto__text {
    position: relative;
    z-index: 1;
}

.callto__text span {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.callto__text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.callto__text .primary-btn {
    background: var(--gold);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.callto__text .primary-btn:hover {
    background: #fff;
    color: var(--gold);
}

/* Appointment Section */
.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;
}

.whatsapp-contact {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    border: 2px solid #e1e1e1;
}

.whatsapp-contact p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.whatsapp-contact i {
    color: #25D366;
    font-size: 32px;
    margin-bottom: 10px;
}

.whatsapp-contact strong {
    display: block;
    margin: 10px 0 5px;
    color: #1c1c1c;
}

.whatsapp-contact a {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.whatsapp-contact a:hover {
    color: #1c1c1c;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features__item {
    text-align: center;
    padding: 30px 20px;
}

.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;
}

.features__item:hover .features__item__icon {
    background: #1c1c1c;
    transform: scale(1.1);
}

.features__item__icon i {
    font-size: 36px;
    color: #fff;
}

.features__item h5 {
    color: #1c1c1c;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.features__item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }

    .callto__text h2 {
        font-size: 24px;
    }

    .services__item__pic {
        height: 200px;
    }
}




