/* Ashlocs Custom Styles - Modern Hair Care Design */

:root {
    --ashlocs-orange: #F26522;
    --ashlocs-dark: #2C2C2C;
    --ashlocs-light: #F8F9FA;
    --ashlocs-white: #FFFFFF;
    --ashlocs-gray: #6C757D;
    --ashlocs-gradient: linear-gradient(135deg, #F26522 0%, #FF8C42 100%);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ashlocs-dark);
    background-color: var(--ashlocs-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--ashlocs-dark);
}

/* Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-hi {
    color: var(--ashlocs-orange);
}

.brand-cliqs {
    color: var(--ashlocs-dark);
}

.nav-link {
    color: var(--ashlocs-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ashlocs-orange) !important;
}

.btn-primary-custom {
    background: var(--ashlocs-gradient);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7) 0%, rgba(242, 101, 34, 0.6) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
    line-height: 1.2;
}

.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.2s both;
    line-height: 1.5;
}

.hero-slide-buttons {
    animation: slideInUp 1s ease-out 0.4s both;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--ashlocs-orange);
    width: 40px;
    border-radius: 10px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--ashlocs-orange);
    border-color: var(--ashlocs-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--ashlocs-orange);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--ashlocs-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-custom {
    border: 2px solid var(--ashlocs-orange);
    color: var(--ashlocs-orange);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--ashlocs-orange);
    color: white;
    transform: translateY(-2px);
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ashlocs-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards - Modern Design */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 101, 34, 0.15);
    border-color: var(--ashlocs-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--ashlocs-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--ashlocs-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Cards with Images - 2 Column Layout */
.service-card-with-image {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-with-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(242, 101, 34, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-with-image:hover .service-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-description {
    color: var(--ashlocs-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more-link {
    color: var(--ashlocs-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.read-more-link:hover {
    color: var(--ashlocs-dark);
    transform: translateX(5px);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Service Detail Cards with Images */
.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(242, 101, 34, 0.2);
}

.service-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ashlocs-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: var(--ashlocs-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--ashlocs-dark);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--ashlocs-orange);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.service-actions .btn {
    flex: 1;
}

/* Stats Section - Premium Beautiful Design */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(242, 101, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(242, 101, 34, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ashlocs-orange) 0%, #ff6b35 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--ashlocs-orange);
    box-shadow: 
        0 25px 50px rgba(242, 101, 34, 0.3),
        0 0 0 1px rgba(242, 101, 34, 0.1) inset;
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--ashlocs-orange) 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.4);
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 20px 50px rgba(242, 101, 34, 0.6);
    background: white;
    color: var(--ashlocs-orange);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
    color: white;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(242, 101, 34, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--ashlocs-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: var(--ashlocs-gray);
    margin: 0;
}

.contact-info-card a {
    color: var(--ashlocs-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--ashlocs-dark);
}

.contact-form-wrapper {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--ashlocs-orange);
    box-shadow: 0 0 0 0.2rem rgba(242, 101, 34, 0.25);
}

.contact-sidebar {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--ashlocs-light);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 60px;
    height: 60px;
    background: var(--ashlocs-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--ashlocs-orange);
}

.contact-detail-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    font-size: 1rem;
    color: var(--ashlocs-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-detail-item a {
    color: var(--ashlocs-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--ashlocs-orange);
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--ashlocs-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ashlocs-orange);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--ashlocs-gradient);
    color: white;
    transform: translateY(-5px);
}

/* Shop Page Styles */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--ashlocs-light);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--ashlocs-orange);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ashlocs-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--ashlocs-gray);
    margin-bottom: 1rem;
    flex: 1;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid var(--ashlocs-light);
    margin-top: auto;
}

.product-price {
    flex: 1;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ashlocs-orange);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    font-weight: 600;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    background: var(--ashlocs-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.5rem;
    color: var(--ashlocs-orange);
}

.empty-state-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
}

.empty-state-text {
    font-size: 1.2rem;
    color: var(--ashlocs-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Detail Page */
.product-detail-image {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.main-product-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--ashlocs-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--ashlocs-orange);
}

.product-detail-info {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    font-size: 1.1rem;
}

.product-detail-price {
    background: var(--ashlocs-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.2rem;
    color: var(--ashlocs-gray);
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ashlocs-orange);
}

.product-detail-description,
.product-detail-features {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--ashlocs-light);
}

.product-detail-description h5,
.product-detail-features h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
}

.product-detail-description p,
.features-list {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ashlocs-gray);
}

.product-actions-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--ashlocs-light);
    border-radius: 15px;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    color: var(--ashlocs-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--ashlocs-orange);
    background: white;
    color: var(--ashlocs-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.qty-btn:hover {
    background: var(--ashlocs-orange);
    color: white;
}

.qty-input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ashlocs-dark);
}

.add-to-cart-main {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.product-meta {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--ashlocs-light);
    border-radius: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--ashlocs-gray);
}

.meta-item i {
    color: var(--ashlocs-orange);
    font-size: 1.2rem;
}

.product-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--ashlocs-light);
}

/* Booking Page Styles */
.booking-form-wrapper {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--ashlocs-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1.5rem;
}

.form-section-title i {
    color: var(--ashlocs-orange);
}

.booking-form-wrapper .form-label {
    font-weight: 600;
    color: var(--ashlocs-dark);
    margin-bottom: 0.5rem;
}

.booking-form-wrapper .form-control {
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.booking-form-wrapper .form-control:focus {
    border-color: var(--ashlocs-orange);
    box-shadow: 0 0 0 0.2rem rgba(242, 101, 34, 0.25);
}

.price-info-box {
    background: var(--ashlocs-light);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--ashlocs-orange);
    font-size: 1.1rem;
}

.price-info-box strong {
    color: var(--ashlocs-orange);
    font-size: 1.3rem;
}

.booking-info-sidebar {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.booking-info-sidebar h3 {
    color: var(--ashlocs-dark);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--ashlocs-light);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--ashlocs-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--ashlocs-orange);
}

.info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--ashlocs-gray);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--ashlocs-orange);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.booking-tips {
    background: var(--ashlocs-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.booking-tips h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ashlocs-dark);
    margin-bottom: 1rem;
}

.booking-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booking-tips li {
    padding: 0.5rem 0;
    color: var(--ashlocs-gray);
    position: relative;
    padding-left: 1.5rem;
}

.booking-tips li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ashlocs-orange);
    font-weight: bold;
}

/* Admin Dashboard Styles */
.admin-login-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.admin-stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
}

.admin-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.admin-stat-card .stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
    margin: 0;
}

.admin-stat-card .stat-info p {
    color: var(--ashlocs-gray);
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}

.admin-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.admin-card-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--ashlocs-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h5 {
    margin: 0;
    font-weight: 700;
    color: var(--ashlocs-dark);
}

.admin-card-body {
    padding: 1.5rem;
}

/* About Section */
.about-section {
    background: var(--ashlocs-light);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ashlocs-orange);
    margin: 0;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--ashlocs-gray);
    margin: 0.5rem 0 0;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--ashlocs-dark);
}

.about-description {
    font-size: 1.1rem;
    color: var(--ashlocs-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ashlocs-orange);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--ashlocs-gray);
    margin: 0.5rem 0 0;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--ashlocs-dark);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--ashlocs-orange);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Portfolio/Gallery Section */
.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Recent Work Section */
.recent-work-section {
    background: var(--ashlocs-light);
    position: relative;
    overflow: hidden;
}

.recent-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.work-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.work-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 101, 34, 0.2);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-item:hover img {
    transform: scale(1.15);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-category {
    display: inline-block;
    background: var(--ashlocs-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.work-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    background: white;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: var(--ashlocs-light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.1) 0%, rgba(242, 101, 34, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--ashlocs-orange);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ashlocs-dark);
}

.feature-box p {
    color: var(--ashlocs-gray);
    line-height: 1.7;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--ashlocs-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ashlocs-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--ashlocs-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ashlocs-gray);
}

/* Testimonial Video/Image Wrapper */
.testimonial-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ashlocs-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(242, 101, 34, 0.6);
}

.play-button i {
    margin-left: 5px;
}

/* Horizontal Testimonial Cards */
.testimonial-card-horizontal {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card-horizontal .testimonial-text {
    font-size: 1rem;
    color: var(--ashlocs-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

.testimonial-card-horizontal .author-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--ashlocs-gradient);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-white-custom {
    background: white;
    color: var(--ashlocs-orange);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-white-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--ashlocs-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--ashlocs-orange);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--ashlocs-orange);
    transform: translateY(-3px);
}

/* TikTok Videos Section */
.tiktok-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.tiktok-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.tiktok-grid {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.tiktok-grid::-webkit-scrollbar {
    height: 8px;
}

.tiktok-grid::-webkit-scrollbar-track {
    background: var(--ashlocs-light);
    border-radius: 10px;
}

.tiktok-grid::-webkit-scrollbar-thumb {
    background: var(--ashlocs-orange);
    border-radius: 10px;
}

.tiktok-grid::-webkit-scrollbar-thumb:hover {
    background: #d45519;
}

.tiktok-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ashlocs-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 600px;
    min-width: 325px;
    flex-shrink: 0;
}

.tiktok-video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(242, 101, 34, 0.2);
}

.tiktok-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.tiktok-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F26522 0%, #FF8C42 100%);
    color: white;
    text-align: center;
    padding: 2rem;
}

.tiktok-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tiktok-placeholder h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.tiktok-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.tiktok-cta {
    text-align: center;
    margin-top: 3rem;
}

.tiktok-cta .btn {
    background: #000000;
    color: white;
    border: none;
}

.tiktok-cta .btn:hover {
    background: #333333;
}

.tiktok-cta .btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-slide-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        max-width: 90%;
    }
    
    .hero-slide-buttons {
        gap: 10px;
    }
    
    .hero-slide-buttons .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slider-nav {
        bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tiktok-video-wrapper {
        height: 500px;
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-slide-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-slide-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .slider-nav {
        bottom: 20px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Theme Toggle */
.theme-switch {
    background: rgba(242, 101, 34, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ashlocs-orange);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-switch:hover {
    background: var(--ashlocs-orange);
    color: white;
}
