/* Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #1a1a1a;
    --secondary-black: #2a2a2a;
    --orange: #ff6b35;
    --dark-orange: #e55a2a;
    --brown: #8b4513;
    --light-brown: #a0522d;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .nav-menu {
        gap: 1rem !important;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-track {
    padding: 2rem 0 0 0;
}


/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
    animation: slideDown 0.5s ease;
}

.brand-logo,
.brand-logo:focus,
.brand-logo:active,
.brand-logo img {
    outline: none !important;
    border: none !important;
}

.navbar .brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    text-decoration: none;
    cursor: pointer;
}

.navbar .nav-container .fa-cut {
    color: #ff6b35;
    font-size: 1.8rem;
}

.navbar .nav-container .brand-logo span {
    color: #f5f5f5;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo i {
    font-size: 1.8rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    text-transform: uppercase;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a:hover::after {
    width: 100%;
}

.book-now-btn {
    background: linear-gradient(135deg, var(--orange), var(--dark-orange));
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--dark-orange), var(--orange));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--orange);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.close-icon {
    display: none;
    font-size: 2rem;
    color: var(--orange);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.close-icon:hover {
    transform: rotate(90deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .brand-logo i {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        padding-top: 5rem;
        gap: 0;
        box-shadow: 2px 0 20px rgba(255, 107, 53, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .book-now-btn {
        display: none;
    }

    .nav-menu .mobile-book-btn {
        display: block;
        background: linear-gradient(135deg, var(--orange), var(--dark-orange));
        color: var(--text-light);
        padding: 1rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        margin: 2rem auto;
        width: 80%;
        max-width: 300px;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .close-icon {
        display: none;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
    }

    @media (max-width: 767px) {
        .floating-buttons .close-icon {
            top: 0.8rem;
            right: revert;
        }
    }

    .close-icon.active {
        display: block;
    }

    .hamburger.active {
        display: none;
    }

    .hero {
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1rem;
    }

    .brand-logo i {
        font-size: 1.3rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }
}

.hero-slider .prev,
.hero-slider .next {
    display: none;
}

/* Hero slider styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    animation: fade 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8);
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

a {
    text-decoration: none;
}

.slide-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 107, 53, 0.5),
        0 0 40px rgba(255, 107, 53, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.slide-text {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow:
        2px 2px 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    color: var(--text-light);
    padding: 1.2rem 3.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow:
        0 5px 20px rgba(255, 107, 53, 0.6),
        0 0 30px rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Previous & Next buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 18px 20px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 0 5px 5px 0;
    user-select: none;
    background-color: rgba(255, 107, 53, 0.6);
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 107, 53, 0.95);
    padding: 18px 25px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* .active {
    background-color: var(--orange);
    transform: scale(1.4);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
} */

.dot:hover {
    background-color: var(--orange);
    transform: scale(1.2);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .slide-text {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .slide-text {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .prev,
    .next {
        padding: 14px 16px;
        font-size: 22px;
    }

    .prev:hover,
    .next:hover {
        padding: 14px 18px;
    }

    .slider-dots {
        bottom: 25px;
        gap: 12px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        margin-top: 60px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow:
            2px 2px 4px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(255, 107, 53, 0.5);
    }

    .slide-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .prev,
    .next {
        padding: 12px 14px;
        font-size: 20px;
    }

    .prev:hover,
    .next:hover {
        padding: 12px 16px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ---------- HD-SERVICE SCOPED STYLES ---------- */
.hd-service.services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hd-service .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hd-fadeInDown 0.8s ease;
}

@keyframes hd-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-service .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    animation: hd-fadeInUp 0.8s ease;
    text-transform: capitalize;
    margin: 0 auto;
    max-width: 1000px;
}

@keyframes hd-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-service .services-slider-container {
    position: relative;
    padding: 2rem 3rem;
    margin: 0 auto;
}

.hd-service .service-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(139, 69, 19, 0.05));
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.hd-service .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.hd-service .service-card:hover::before {
    left: 100%;
}

.hd-service .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 69, 19, 0.1));
}

.hd-service .service-icon {
    font-size: 3.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    animation: hd-float 3s ease-in-out infinite;
}

@keyframes hd-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hd-service .service-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

.hd-service .service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.hd-service .service-card p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
    min-height: 60px;
}

.hd-service .price {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    color: #ffffff;
    padding: 0.7rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.hd-service .service-page-only .price {
    background: none;
}

.hd-service .service-card:hover .price {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Slick Custom Arrows */
.hd-service .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    color: #fff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.hd-service .slick-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #8b4513, #ff6b35);
}

.hd-service .slick-prev {
    left: -25px;
}

.hd-service .slick-next {
    right: -25px;
}

.hd-service .slick-dots {
    bottom: -50px;
}

.hd-service .slick-dots li button:before {
    font-size: 12px;
    color: #ff6b35;
    opacity: 0.5;
}

.hd-service .slick-dots li.slick-active button:before {
    color: #ff6b35;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hd-service .section-title {
        font-size: 2.5rem;
    }

    .hd-service .services-slider-container {
        padding: 2rem 2.5rem;
    }

    .hd-service .slick-prev {
        left: -15px;
    }

    .hd-service .slick-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .hd-service .section-title {
        font-size: 2rem;
    }

    .hd-service .section-subtitle {
        font-size: 1rem;
    }

    .hd-service .services-slider-container {
        padding: 2rem 2rem;
    }

    .hd-service .service-card {
        padding: 2rem 1.2rem;
        margin: 0 5px;
    }

    .hd-service .service-icon {
        font-size: 3rem;
    }

    .hd-service .service-card h3 {
        font-size: 1.4rem;
    }

    .hd-service .service-card p {
        font-size: 0.9rem;
        min-height: auto;
    }

    .hd-service .slick-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hd-service .slick-prev {
        left: -10px;
    }

    .hd-service .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .hd-service.services {
        padding: 3rem 0;
    }

    .hd-service .section-title {
        font-size: 1.8rem;
    }

    .hd-service .services-slider-container {
        padding: 1.5rem 1.5rem;
    }

    .hd-service .service-card {
        padding: 2rem 1rem;
    }

    .hd-service .service-icon {
        font-size: 2.5rem;
    }

    .hd-service .service-card h3 {
        font-size: 1.3rem;
    }

    .hd-service .price {
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
    }

    .hd-service .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hd-service .slick-prev {
        left: -5px;
    }

    .hd-service .slick-next {
        right: -5px;
    }
}

/* ---------- TESTIMONIALS SCOPED STYLES ---------- */
.hd-testimonials {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hd-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hd-testimonials .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease;
    position: relative;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-testimonials .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1000px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hd-testimonials .testimonials-slider-container {
    position: relative;
    padding: 2rem 3rem;
    margin: 0 auto;
    max-width: 1400px;
}

.hd-testimonials .testimonial-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(139, 69, 19, 0.05));
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
}

.hd-testimonials .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.hd-testimonials .testimonial-card:hover::before {
    left: 100%;
}

.hd-testimonials .testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(139, 69, 19, 0.1));
}

.hd-testimonials .quote-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hd-testimonials .testimonial-text {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hd-testimonials .customer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hd-testimonials .customer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.hd-testimonials .testimonial-card:hover .customer-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.hd-testimonials .customer-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.hd-testimonials .customer-visit {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 0.8rem;
}

.hd-testimonials .rating {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
}

.hd-testimonials .rating i {
    color: #ff6b35;
    font-size: 1.1rem;
}

/* Slick Custom Arrows */
.hd-testimonials .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    color: #fff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.hd-testimonials .slick-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #8b4513, #ff6b35);
}

.hd-testimonials .slick-prev {
    left: -25px;
}

.hd-testimonials .slick-next {
    right: -25px;
}

.hd-testimonials .slick-dots {
    bottom: -50px;
}

.hd-testimonials .slick-dots li button:before {
    font-size: 12px;
    color: #ff6b35;
    opacity: 0.5;
}

.hd-testimonials .slick-dots li.slick-active button:before {
    color: #ff6b35;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hd-testimonials .section-title {
        font-size: 2.5rem;
    }

    .hd-testimonials .testimonials-slider-container {
        padding: 2rem 2.5rem;
    }

    .hd-testimonials .slick-prev {
        left: -15px;
    }

    .hd-testimonials .slick-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .hd-testimonials .section-title {
        font-size: 2rem;
    }

    .hd-testimonials .section-subtitle {
        font-size: 1rem;
    }

    .hd-testimonials .testimonials-slider-container {
        padding: 2rem 2rem;
    }

    .hd-testimonials .testimonial-card {
        padding: 2.5rem 1.5rem;
        margin: 0 10px;
    }

    .hd-testimonials .testimonial-text {
        font-size: 1rem;
        min-height: auto;
    }

    .hd-testimonials .customer-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .hd-testimonials .customer-name {
        font-size: 1.2rem;
    }

    .hd-testimonials .slick-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hd-testimonials .slick-prev {
        left: -10px;
    }

    .hd-testimonials .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .hd-testimonials {
        padding: 3rem 0;
    }

    .hd-testimonials .section-title {
        font-size: 1.8rem;
    }

    .hd-testimonials .testimonials-slider-container {
        padding: 1.5rem 1.5rem;
    }

    .hd-testimonials .testimonial-card {
        padding: 2rem 1.2rem;
    }

    .hd-testimonials .quote-icon {
        font-size: 2.5rem;
    }

    .hd-testimonials .testimonial-text {
        font-size: 0.95rem;
    }

    .hd-testimonials .customer-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .hd-testimonials .customer-name {
        font-size: 1.1rem;
    }

    .hd-testimonials .rating i {
        font-size: 1rem;
    }

    .hd-testimonials .slick-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hd-testimonials .slick-prev {
        left: -5px;
    }

    .hd-testimonials .slick-next {
        right: -5px;
    }
}

:root {
    --primary-black: #1a1a1a;
    --orange: #ff6b35;
    --brown: #8b4513;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
}

/* Team Section */
.hd-my-team {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/webp/hascut_img3.webp) center / cover fixed;
}

img.brand-logo-img {
    height: 4rem;
}

.hd-my-team::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hd-my-team .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hd-my-team .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hd-my-team .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    font-size: 1.05rem;
}

.hd-my-team .team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

@media (max-width:1200px) {
    .hd-my-team .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width:992px) {
    .hd-my-team .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .hd-my-team .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .hd-my-team .team-grid {
        grid-template-columns: 1fr;
    }
}


.hd-my-team .team-card {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(139, 69, 19, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    transform: translateY(0);
}

.hd-my-team .team-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 18px 50px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.12);
}

/* image block */
.hd-my-team .team-image {
    height: 300px;
    background-size: cover;
    background-position: top;
    position: relative;
}

.hd-my-team .team-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
}

.hd-my-team .team-info {
    padding: 1.6rem;
    text-align: center;
}

.hd-my-team .team-info h3 {
    font-size: 1.35rem;
    margin-bottom: .4rem;
    color: #fff;
}

.hd-my-team .role {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--brown));
    color: #fff;
    padding: .35rem .9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .9rem;
}

.hd-my-team .team-info p {
    color: var(--text-gray);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hd-my-team .social-links {
    display: flex;
    gap: .65rem;
    justify-content: center;
}

.hd-my-team .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.06);
    color: var(--orange);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all .28s ease;
}

.hd-my-team .social-links a:hover {
    background: linear-gradient(135deg, var(--orange), var(--brown));
    color: #fff;
    transform: translateY(-4px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.18);
}

/* fade-in on scroll initial state */
.hd-my-team .team-card {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive */
@media (max-width:1024px) {
    .hd-my-team .team-image {
        height: 300px;
    }

    .hd-my-team .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width:768px) {
    .hd-my-team {
        padding: 3.5rem 0;
    }

    .hd-my-team .team-image {
        height: 260px;
    }

    .hd-my-team .section-title {
        font-size: 2rem;
    }
}

@media (max-width:480px) {
    .hd-my-team .team-image {
        height: 220px;
    }

    .hd-my-team .section-title {
        font-size: 1.6rem;
    }
}


/* HD Footer Styles */
.hd-footer {
    background-color: #1a1a1a;
    /* Primary Black */
    padding: 4rem 2rem;
    border-top: 3px solid #ff6b35;
    /* Orange */
    color: #f5f5f5;
    /* Text Light */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hd-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.hd-footer .footer-section h3 {
    color: #ff6b35;
    /* Orange */
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.hd-footer .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #8b4513;
    /* Brown */
}

.hd-footer .footer-section p,
.hd-footer .footer-section ul li,
.hd-footer .footer-bottom {
    color: #cccccc;
    /* Text Gray */
}

.hd-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .hd-my-team .team-image {
        height: 500px;
    }
}

.hd-footer .footer-section ul li {
    margin-bottom: 0.8rem;
}

.hd-footer .footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hd-footer .footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.hd-footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hd-footer .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #8b4513);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5f5f5;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hd-footer .social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
}

.hd-footer .contact-info li,
.hd-footer .hours li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hd-footer .contact-info i {
    color: #ff6b35;
    /* Orange */
    font-size: 1.1rem;
}

.hd-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.95rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .hd-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* .hd-footer .social-icons {
        justify-content: center;
    } */
}

@media (max-width: 1200px) {

    .hd-service .section-subtitle,
    .hd-testimonials .section-subtitle,
    .hd-my-team .section-subtitle {
        padding: 0 10rem;
    }
}

@media (max-width: 992px) {

    .hd-service .section-subtitle,
    .hd-testimonials .section-subtitle,
    .hd-my-team .section-subtitle {
        padding: 0 5rem;
    }
}

@media (max-width: 768px) {

    .hd-service .section-subtitle,
    .hd-testimonials .section-subtitle,
    .hd-my-team .section-subtitle {
        padding: 0 2rem;
    }
}

@media (max-width: 480px) {

    .hd-service .section-subtitle,
    .hd-testimonials .section-subtitle,
    .hd-my-team .section-subtitle {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {

    .hd-testimonials .section-subtitle,
    .hd-my-team .section-subtitle,
    .hd-service .section-subtitle {
        padding: 0 30px;
    }
}

/* Image Optimization Styles */
@media (max-width: 767px) {
    .hd-my-team {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/webp/hascut_img3.webp) contain !important;
    }

    .hd-my-team {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/webp/hascut_img3.webp) contain !important;
    }

    .about-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('images/webp/hascut_img9.webp') !important;
    }

    .location-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(images/webp/hascut_img3.webp);
        background-size: contain;
        background-position: top;
        background-repeat: no-repeat;
    }

}