/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: #C90F16;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.floating-btn-phone {
    background-color: #25D366;
}

.floating-btn-phone:hover {
    background-color: #20ba57;
}


.floating-btn-sms {
    background-color: #C90F16;
}

.floating-btn-sms:hover {
    background-color: #a00c12;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer Contact Info */
.footer-contact p {
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #C90F16;
}

.footer-contact i {
    margin-right: 8px;
    color: #C90F16;
}

/* Logo Styling - Header Logo */
.header-logo {
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 5px;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Header Layout 1 Logo - White Background */
.header-layout1 .header-logo {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-layout1 .header-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

/* Header Layout 2 Logo (Contact Page) */
.header-layout2 .header-logo {
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 5px;
}

.header-layout2 .header-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* New Sticky Navigation Bar - Modern Implementation (No Effects) */
.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 2px solid #C90F16;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-navbar.active {
    display: block;
}

.sticky-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.sticky-nav-logo {
    flex-shrink: 0;
}

.sticky-nav-logo img {
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sticky-nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.sticky-nav-menu li {
    margin: 0;
    padding: 0;
}

.sticky-nav-menu a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.sticky-nav-menu a:hover {
    color: #C90F16;
}

.sticky-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.sticky-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #C90F16;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.sticky-nav-phone:hover {
    background: #a00c12;
    color: #ffffff;
}

.sticky-nav-phone i {
    font-size: 16px;
}

.sticky-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
}

@media (max-width: 991px) {
    .sticky-nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 2px solid #C90F16;
        display: none;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .sticky-nav-menu.active {
        display: flex;
    }
    
    .sticky-nav-menu li {
        width: 100%;
    }
    
    .sticky-nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    
    .sticky-nav-toggle {
        display: block;
    }
    
    .sticky-nav-container {
        height: 60px;
    }
    
    .sticky-nav-logo img {
        max-height: 40px;
    }
    
    .sticky-nav-phone span {
        display: none;
    }
}

/* Testimonial - Professional & Clean Design */
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0;
}

.testi-img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

.testi-img i {
    font-size: 24px;
    color: #999;
}

.testi-img img {
    display: none;
}

.testi-name-rating {
    flex: 1;
    display: flex;
    align-items: center;
}

.testi-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    white-space: nowrap;
}

/* Stars removed - no longer needed */
.testi-star {
    display: none !important;
}


/* Footer Logo */
.footer-top > .row > div:first-child a {
    display: inline-block;
    background-color: transparent;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-top > .row > div:first-child a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-top > .row > div:first-child a img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(2.0) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

/* Footer Call Icon & Media Style */
.footer-top .media-style2 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-top .media-style2:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-top .media-style2 .media-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 15, 22, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-top .media-style2:hover .media-icon {
    background-color: rgba(201, 15, 22, 0.3);
    transform: scale(1.1);
}

.footer-top .media-style2 .media-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-top .media-style2 .media-body {
    flex: 1;
}

.footer-top .media-style2 .media-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-top .media-style2 .media-text {
    margin: 0;
}

.footer-top .media-style2 .media-text a {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-top .media-style2 .media-text a:hover {
    color: #C90F16;
    transform: translateX(5px);
}

/* Footer Social Icons */
.footer-top .social-style1 {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-top .social-style1 a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-top .social-style1 a:hover {
    background-color: #C90F16;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 15, 22, 0.4);
}


/* Mobile Menu Logo */
.mobile-logo {
    margin-bottom: 30px;
}

.mobile-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive Logo Adjustments */
@media (max-width: 991px) {
    .header-logo img,
    .header-layout2 .header-logo img,
    .header-layout1 .header-logo img {
        max-height: 50px;
    }
    
    
    .footer-top > .row > div:first-child a img {
        max-height: 40px;
    }
    
    .footer-top > .row > div:first-child a {
        padding: 10px 15px;
    }
    
    .footer-top .media-style2 {
        padding: 10px 15px;
        gap: 12px;
    }
    
    .footer-top .media-style2 .media-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-top .media-style2 .media-icon img {
        width: 24px;
        height: 24px;
    }
    
    .footer-top .media-style2 .media-text a {
        font-size: 16px;
    }
    
    .footer-top .social-style1 a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mobile-logo img {
        max-height: 50px;
    }
    
    .header-logo,
    .header-layout2 .header-logo,
    .header-layout1 .header-logo {
        padding: 8px 12px;
    }
    
    
    .testi-img {
        width: 45px;
        height: 45px;
    }
    
    .testi-img i {
        font-size: 22px;
    }
    
    .testi-name {
        font-size: 14px;
    }
    
    .testi-star i {
        font-size: 11px;
    }
    
    .testi-name-rating {
        gap: 6px;
    }
    
    .testi-author {
        gap: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .header-logo img,
    .header-layout2 .header-logo img,
    .header-layout1 .header-logo img {
        max-height: 45px;
    }
    
    
    .footer-top > .row > div:first-child a img {
        max-height: 35px;
    }
    
    .footer-top > .row > div:first-child a {
        padding: 8px 12px;
    }
    
    .footer-top .media-style2 {
        padding: 8px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top .media-style2 .media-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-top .media-style2 .media-icon img {
        width: 22px;
        height: 22px;
    }
    
    .footer-top .media-style2 .media-text a {
        font-size: 14px;
    }
    
    .footer-top .social-style1 {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-top .social-style1 a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .mobile-logo img {
        max-height: 45px;
    }
    
    .header-logo,
    .header-layout2 .header-logo,
    .header-layout1 .header-logo {
        padding: 6px 10px;
    }
    
    
    .testi-img {
        width: 42px;
        height: 42px;
    }
    
    .testi-img i {
        font-size: 20px;
    }
    
    .testi-name {
        font-size: 13px;
    }
    
    .testi-star i {
        font-size: 10px;
    }
    
    .testi-name-rating {
        gap: 5px;
        row-gap: 4px;
    }
    
    .testi-author {
        gap: 10px;
        margin-bottom: 18px;
    }
}

/* Book Appointment Page Styles */
.appointment-info-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.appointment-info-box .info-box-inner {
    margin: 0;
}

.appointment-info-box .info-box-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--elton-dark, #1a1a1a);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C90F16;
}

.appointment-info-box .info-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.appointment-info-box .info-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.appointment-info-box .info-box-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-info-box .info-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(201, 15, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C90F16;
    font-size: 18px;
}

.appointment-info-box .info-content {
    flex: 1;
}

.appointment-info-box .info-content span {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.appointment-info-box .info-content p {
    margin: 0;
    font-size: 16px;
    color: var(--elton-dark, #1a1a1a);
    font-weight: 500;
}

.appointment-info-box .info-content a {
    color: #C90F16;
    text-decoration: none;
    transition: all 0.3s ease;
}

.appointment-info-box .info-content a:hover {
    color: #a00c12;
    text-decoration: underline;
}

/* Working Hours Box */
.appointment-hours-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.appointment-hours-box .hours-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--elton-dark, #1a1a1a);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C90F16;
    display: flex;
    align-items: center;
    gap: 10px;
}

.appointment-hours-box .hours-title i {
    color: #C90F16;
}

.appointment-hours-box .hours-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-hours-box .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.appointment-hours-box .hours-row:last-child {
    border-bottom: none;
}

.appointment-hours-box .hours-day {
    font-weight: 600;
    color: var(--elton-dark, #1a1a1a);
}

.appointment-hours-box .hours-time {
    color: #666;
    font-weight: 500;
}

/* Appointment Form Wrapper */
.appointment-form-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.appointment-form-wrapper .form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #C90F16;
}

.appointment-form-wrapper .form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--elton-dark, #1a1a1a);
    margin-bottom: 10px;
}

.appointment-form-wrapper .form-subtitle {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Box */
.benefit-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-box .benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 15, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #C90F16;
    font-size: 32px;
    transition: all 0.3s ease;
}

.benefit-box:hover .benefit-icon {
    background-color: #C90F16;
    color: #ffffff;
    transform: scale(1.1);
}

.benefit-box .benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--elton-dark, #1a1a1a);
    margin-bottom: 15px;
}

.benefit-box .benefit-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Form Style 4 Enhancements */
.form-style4 .form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-style4 .form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #C90F16;
    font-size: 16px;
    z-index: 1;
    pointer-events: none;
}

.form-style4 .form-group input,
.form-style4 .form-group select,
.form-style4 .form-group textarea {
    padding-left: 50px !important;
}

/* Fix Date Input and Select Dropdowns */
.form-style4 .form-group input[type="date"] {
    position: relative;
    cursor: pointer;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-style4 .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 11;
    opacity: 1;
    width: 20px;
    height: 20px;
    background: transparent;
}

.form-style4 .form-group select {
    position: relative;
    cursor: pointer;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C90F16' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px !important;
    pointer-events: auto !important;
}

.form-style4 .form-group select:focus {
    outline: 2px solid #C90F16;
    outline-offset: 2px;
    border-color: #C90F16;
}

.form-style4 .form-group select option {
    padding: 10px;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Ensure form controls are interactive */
.form-style4 .form-control {
    pointer-events: auto !important;
    cursor: pointer;
    user-select: none;
}

.form-style4 .form-control:focus {
    border-color: #C90F16;
    box-shadow: 0 0 0 0.2rem rgba(201, 15, 22, 0.25);
    outline: none;
}

.form-style4 .form-group textarea {
    padding-top: 15px !important;
}

.form-style4 .vs-btn.style3 {
    background-color: #C90F16;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-style4 .vs-btn.style3:hover {
    background-color: #a00c12;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 15, 22, 0.3);
}

/* Responsive Book Appointment Page */
@media (max-width: 991px) {
    .appointment-form-wrapper {
        padding: 30px 25px;
    }
    
    .appointment-info-box,
    .appointment-hours-box {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .appointment-form-wrapper {
        padding: 25px 20px;
    }
    
    .appointment-form-wrapper .form-title {
        font-size: 24px;
    }
    
    .appointment-info-box,
    .appointment-hours-box {
        padding: 25px 20px;
    }
    
    .benefit-box {
        margin-bottom: 20px;
    }
}

/* Appointment CTA Section Styles */
.appointment-cta-content {
    padding: 20px 0;
}

.appointment-features {
    margin: 20px 0;
}

.appointment-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.appointment-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.appointment-features-list li:last-child {
    margin-bottom: 0;
}

.appointment-features-list li i {
    color: #ffffff;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

