/* Conversion-Optimized Enhancements CSS */

/************************************/
/*** Limited-Time Badge ***/
/************************************/

.limited-time-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 30px 30px 0 0;
    margin: -40px -40px 20px -40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.3);
}

.limited-time-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.badge-pulse {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 0.7;
    }
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/************************************/
/*** Form Benefits Section ***/
/************************************/

.form-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
    border-left: 4px solid #c7b299;
}

.benefit-item {
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.benefit-item::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

/************************************/
/*** Enhanced Form Controls ***/
/************************************/

.form-control-enhanced {
    height: 56px !important;
    padding: 16px 20px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.form-control-enhanced:focus {
    border-color: #c7b299 !important;
    box-shadow: 0 0 0 4px rgba(199, 178, 153, 0.1) !important;
    outline: none !important;
    transform: translateY(-1px);
}

.form-control-enhanced::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/************************************/
/*** Enhanced Submit Button ***/
/************************************/

.btn-submit-enhanced {
    width: 100%;
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(199, 178, 153, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.btn-submit-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-enhanced:hover::before {
    left: 100%;
}

.btn-submit-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(199, 178, 153, 0.4);
    background: linear-gradient(135deg, #b89968 0%, #a68850 100%);
}

.btn-submit-enhanced:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(199, 178, 153, 0.3);
}

.btn-text {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.btn-subtext {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/************************************/
/*** Trust Signals ***/
/************************************/

.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-item {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trust-separator {
    color: #cbd5e1;
    font-size: 14px;
}

/************************************/
/*** Hero Stats Section ***/
/************************************/

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c7b299;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #c7b299;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

/************************************/
/*** Appointment Form Enhancements ***/
/************************************/

.appointment-form {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-appointment-form-title h2 {
    font-size: 32px !important;
    margin-bottom: 8px !important;
}

.hero-appointment-form-title p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 0;
}

/************************************/
/*** Mobile Responsive ***/
/************************************/

@media (max-width: 991px) {
    .hero-book-appointment .appointment-form {
        margin-left: 0;
        margin-top: 40px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .limited-time-badge {
        margin: -40px -30px 20px -30px;
        padding: 10px 15px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .appointment-form {
        padding: 30px !important;
    }
    
    .hero-appointment-form-title h2 {
        font-size: 26px !important;
    }
    
    .form-benefits {
        padding: 12px;
    }
    
    .benefit-item {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .form-control-enhanced {
        height: 52px !important;
        font-size: 15px !important;
    }
    
    .btn-submit-enhanced {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .btn-text {
        font-size: 16px;
    }
    
    .btn-subtext {
        font-size: 11px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .limited-time-badge {
        margin: -40px -20px 15px -20px;
        padding: 8px 12px;
    }
    
    .badge-text {
        font-size: 11px;
    }
    
    .appointment-form {
        padding: 20px !important;
    }
    
    .hero-appointment-form-title h2 {
        font-size: 22px !important;
    }
    
    .form-benefits {
        padding: 10px;
    }
    
    .benefit-item {
        font-size: 12px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .trust-signals {
        font-size: 11px;
    }
    
    .trust-item {
        font-size: 11px;
    }
}

/************************************/
/*** Animation Enhancements ***/
/************************************/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appointment-form > * {
    animation: fadeInUp 0.6s ease-out;
}

.appointment-form > *:nth-child(2) {
    animation-delay: 0.1s;
}

.appointment-form > *:nth-child(3) {
    animation-delay: 0.2s;
}

/************************************/
/*** Focus States for Accessibility ***/
/************************************/

.form-control-enhanced:focus,
.btn-submit-enhanced:focus {
    outline: 3px solid rgba(199, 178, 153, 0.3);
    outline-offset: 2px;
}

/************************************/
/*** Loading State ***/
/************************************/

.btn-submit-enhanced.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit-enhanced.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/************************************/
/*** Enhanced CTA Button (Secondary) ***/
/************************************/

.btn-cta-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-cta-enhanced:hover::before {
    left: 100%;
}

.cta-icon {
    font-size: 22px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.cta-text {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .btn-cta-enhanced {
        padding: 16px 30px;
        font-size: 16px;
        gap: 10px;
    }
    
    .cta-icon {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .btn-cta-enhanced {
        padding: 14px 25px;
        font-size: 15px;
        width: 100%;
    }
}

/************************************/
/*** NEW ABOUT SECTION STYLES ***/
/************************************/

.about-us-new {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-us-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(199, 178, 153, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(199, 178, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-section-header {
    margin-bottom: 50px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #c7b299;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(199, 178, 153, 0.2);
}

.badge-icon {
    font-size: 18px;
    animation: pulse-star 2s ease-in-out infinite;
}

@keyframes pulse-star {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    color: #c7b299;
    position: relative;
    display: inline-block;
}

.about-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-testimonials-grid {
    margin-top: 40px;
    margin-bottom: 40px;
}

.video-testimonial-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 30px;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 125%;
    overflow: hidden;
    background: #f1f1f1;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-testimonial-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-testimonial-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(199, 178, 153, 0.4);
}

.play-button i {
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

.about-trust-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-indicator-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.trust-indicator-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #c7b299;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 4px;
}

.trust-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.video-modal-new {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-content-new {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal-new {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-new:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-container-new {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container-new iframe,
.video-container-new video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-us-new {
        padding: 60px 0;
    }
    .about-main-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 32px;
    }
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    /* Video modal mobile styles */
    .modal-content-new {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .close-modal-new {
        top: 10px;
        right: 10px;
        z-index: 10;
    }
    
    .video-container-new {
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .about-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    .about-main-title {
        font-size: 28px;
    }
    .about-subtitle {
        font-size: 15px;
    }
}

/************************************/
/*** MODERN SERVICES SECTION STYLES ***/
/************************************/

.our-services {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 178, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.our-services .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.our-services .section-title h2 span {
    color: #c7b299;
}

.our-services .section-title p {
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Service Item Cards */
.service-item {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c7b299 0%, #b89968 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(199, 178, 153, 0.25);
}

/* Icon Box */
.service-item .icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
}

.service-item .icon-box .img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.service-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

/* Service Body */
.service-body {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item:hover .service-body h3 {
    color: #c7b299;
}

.service-body p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Read More Button */
.read-more-btns {
    text-align: center;
    margin-top: auto;
}

.read-more-btns p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover .read-more-btns p {
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
    color: #000 !important;
    transform: translateY(-2px);
}

/* Services Footer */
.services-box-footer {
    margin-top: 40px;
    text-align: center;
}

.services-box-footer .btn-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4);
    position: relative;
    overflow: hidden;
}

.services-box-footer .btn-default::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(199, 178, 153, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.services-box-footer .btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.5);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #c7b299 0%, #b89968 100%);
}

.services-box-footer .btn-default:hover::after {
    width: 300px;
    height: 300px;
}

/* Counter Section Styling */
.our-counter {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.our-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 178, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.counter-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.counter-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #c7b299;
    margin-bottom: 8px;
    line-height: 1;
}

.counter-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .our-services {
        padding: 60px 0;
    }
    
    .our-services .section-title h2 {
        font-size: 36px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .our-services .section-title h2 {
        font-size: 32px;
    }
    
    .our-services .section-title p {
        font-size: 16px;
    }
    
    .service-item .icon-box {
        width: 80px;
        height: 80px;
    }
    
    .service-body h3 {
        font-size: 20px;
    }
    
    .our-counter {
        padding: 40px 0;
        margin-top: 40px;
        border-radius: 20px;
    }
    
    .counter-item {
        padding: 15px 10px;
    }
    
    .counter-title h2 {
        font-size: 36px;
        margin-bottom: 5px;
    }
    
    .counter-title h3 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .our-services {
        padding: 40px 0;
    }
    
    .our-services .section-title h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .our-services .section-title p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .service-item {
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .service-item .icon-box {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .service-item .icon-box .img {
        width: 45px;
        height: 45px;
    }
    
    .service-body {
        margin-bottom: 15px;
    }
    
    .service-body h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-body p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .read-more-btns p {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .services-box-footer {
        margin-top: 30px;
    }
    
    .services-box-footer .btn-default {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        border-radius: 8px;
    }
    
    .our-counter {
        padding: 20px 10px;
        margin-top: 20px;
        border-radius: 12px;
    }
    
    .counter-item {
        padding: 10px 5px;
        margin-bottom: 0;
    }
    
    .counter-title h2 {
        font-size: 28px;
        margin-bottom: 3px;
    }
    
    .counter-title h3 {
        font-size: 11px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
}

/************************************/
/*** TREATMENT MODAL MOBILE OPTIMIZATION ***/
/************************************/

/* Treatment Modal Improvements */
#treatmentModal .modal-dialog {
    margin: 1.75rem auto;
    max-width: 800px;
}

#treatmentModal .modal-content {
    border-radius: 16px;
}

#treatmentModal .modal-body {
    padding: 0 !important;
}

#treatmentModal #treatTitle {
    font-size: 22px;
    line-height: 1.3;
    padding: 20px 20px 10px 20px !important;
    margin-bottom: 0;
}

#treatmentModal #treatsubdesc {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 20px 15px 20px !important;
    color: #64748b;
}

#treatmentModal #treatImg {
    margin: 0;
}

#treatmentModal #treatDesc {
    font-size: 14px !important;
    line-height: 1.6;
    padding: 15px 20px !important;
}

#treatmentModal .text-center p {
    font-size: 14px;
    padding: 0 20px;
    margin-bottom: 8px;
}

#treatmentModal .btn-whatsapp {
    margin: 20px 0 25px 0;
    padding: 12px 24px;
    font-size: 15px;
}

#treatmentModal #btncta {
    font-size: 16px;
    padding: 15px 20px 10px 20px;
    margin: 0;
}

#treatmentModal .btn-close {
    padding: 12px;
    margin: 15px 15px 0 0 !important;
}

/* Brand logos in modal */
#treatmentModal #implants .d-flex {
    gap: 15px !important;
    padding: 10px 15px !important;
    margin: 15px 0 20px 0 !important;
}

#treatmentModal #implants img {
    height: 40px !important;
}

#treatmentModal #venner img {
    margin-top: 15px;
    border-radius: 8px;
}

/* Mobile specific */
@media (max-width: 576px) {
    #treatmentModal .modal-dialog {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    #treatmentModal #treatTitle {
        font-size: 20px;
        padding: 15px 15px 8px 15px !important;
    }
    
    #treatmentModal #treatsubdesc {
        font-size: 13px;
        padding: 0 15px 12px 15px !important;
    }
    
    #treatmentModal #treatDesc {
        font-size: 13px !important;
        padding: 12px 15px !important;
        line-height: 1.5;
    }
    
    #treatmentModal .text-center p {
        font-size: 13px;
        padding: 0 15px;
        margin-bottom: 6px;
    }
    
    #treatmentModal #btncta {
        font-size: 15px;
        padding: 12px 15px 8px 15px;
    }
    
    #treatmentModal .btn-whatsapp {
        margin: 15px 0 20px 0;
        padding: 11px 20px;
        font-size: 14px;
        width: calc(100% - 30px);
        max-width: 300px;
    }
    
    #treatmentModal #implants .d-flex {
        gap: 10px !important;
        padding: 8px 10px !important;
        margin: 10px 0 15px 0 !important;
    }
    
    #treatmentModal #implants img {
        height: 35px !important;
    }
    
    #treatmentModal .btn-close {
        padding: 10px;
        margin: 10px 10px 0 0 !important;
    }
}

/************************************/
/*** MODERN TEAM SECTION STYLES ***/
/************************************/

.our-team {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.our-team .section-title h2 span {
    color: #c7b299;
}

/* Team Member Cards */
.team-member-item {
    margin-bottom: 30px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-member-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c7b299 0%, #b89968 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(199, 178, 153, 0.25);
}

.team-member-item:hover::after {
    transform: scaleX(1);
}

.team-member-item .team-image {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.team-member-item .team-image figure {
    margin: 0;
    overflow: hidden;
}

.team-member-item .team-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.team-member-item:hover .team-image img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

/* Team Content */
.team-member-item .team-content {
    text-align: center;
    padding: 20px 15px;
    background: white;
}

.team-member-item .team-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.team-member-item:hover .team-content h3 {
    color: #c7b299;
}

.team-member-item .team-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .our-team {
        padding: 60px 0;
    }
    
    .team-member-item {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .team-member-item .team-content {
        padding: 15px 12px;
    }
    
    .team-member-item .team-content h3 {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .team-member-item .team-content p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .our-team {
        padding: 50px 0;
    }
    
    .team-member-item {
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .team-member-item .team-content {
        padding: 12px 10px;
    }
    
    .team-member-item .team-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .team-member-item .team-content p {
        font-size: 11px;
        letter-spacing: 0.3px;
    }
}

/************************************/
/*** BEFORE AND AFTER SECTION ***/
/************************************/

.before-after-section {
    padding: 80px 0;
    background: #fff;
}

.before-after-section .section-title h2 span {
    color: #c7b299;
}

/* Static Image Display - No Motion */
.before-after-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.before-after-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .before-after-image {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .before-after-section {
        padding: 50px 0;
    }
    
    .before-after-image {
        border-radius: 8px;
    }
}

/************************************/
/*** TESTIMONIALS SECTION ***/
/************************************/

.our-testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.our-testimonials .section-title h2 span {
    color: #c7b299;
}

/* Static Testimonial Cards - No Carousel */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-weight: 700;
    color: #c7b299;
    opacity: 0.1;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-header {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-quote-image {
    margin-bottom: 15px;
}

.testimonial-quote-image img {
    height: 40px;
    width: auto;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.testimonial-body {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

.testimonial-body .author-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .our-testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
        border-radius: 10px;
    }
    
    .testimonial-card::before {
        font-size: 50px;
        top: 15px;
        left: 15px;
    }
    
    .testimonial-content p {
        font-size: 14px;
    }
    
    .testimonial-body .author-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .our-testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 8px;
    }
    
    .testimonial-card::before {
        font-size: 40px;
        top: 12px;
        left: 12px;
    }
    
    .testimonial-quote-image img {
        height: 32px;
    }
    
    .testimonial-content p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonial-body {
        padding-top: 15px;
    }
    
    .testimonial-body .author-content h3 {
        font-size: 15px;
    }
}

/************************************/
/*** TREATMENT PACKAGES CTA SECTION ***/
/************************************/

.treatment-packages-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

.packages-wrapper {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px 30px;
}

.packages-title {
    font-size: 32px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
}

.packages-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
}

/* Package Cards */
.package-card {
    background: white;
    border: 3px solid #10b981;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.package-name {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    min-height: 50px;
}

.package-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #10b981;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: #059669;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.package-btn i {
    font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .packages-wrapper {
        padding: 40px 25px;
    }
    
    .packages-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .treatment-packages-cta {
        padding: 50px 0;
    }
    
    .packages-wrapper {
        padding: 35px 20px;
        border-radius: 16px;
    }
    
    .packages-title {
        font-size: 24px;
    }
    
    .packages-subtitle {
        font-size: 15px;
    }
    
    .package-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .package-name {
        font-size: 17px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .treatment-packages-cta {
        padding: 40px 0;
    }
    
    .packages-wrapper {
        padding: 30px 15px;
        border-radius: 12px;
    }
    
    .packages-title {
        font-size: 22px;
    }
    
    .packages-subtitle {
        font-size: 14px;
    }
    
    .package-card {
        padding: 20px 15px;
        border-width: 2px;
    }
    
    .package-name {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .package-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .package-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
