/* =============================================
   DOTSUN MAIN CSS - HOMEPAGE SECTIONS
   ============================================= */

/* ---- HERO SECTION ---- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video-section video.dotsun-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    display: none !important;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 140px);
    padding-top: 80px;
    padding-bottom: 140px;
}

.hero-content {
    max-width: 760px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(235,112,36,0.15);
    border: 1px solid rgba(235,112,36,0.3);
    padding: 8px 20px;
    color: var(--primary-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 10px;
    color: var(--primary-color);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title-line1 {
    display: block;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title-line2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.7);
    margin-top: 4px;
}

.hero-description {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 16px 36px;
    font-size: 14px;
}

.hero-btn-secondary {
    padding: 14px 36px;
    font-size: 14px;
    border-color: rgba(255,255,255,0.5);
}

/* ---- HERO MULTI-SLIDE STYLES ---- */
.dotsun-hero-slider-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 85vh;
}

.dotsun-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
}

.dotsun-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    transform: scale(1.05);
}

.dotsun-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-indicators .indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .indicator.active,
.slider-indicators .indicator:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* ---- INQUIRY MODE STYLES ---- */
.dotsun-inquiry-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dotsun-inquiry-mode-active .price,
body.dotsun-inquiry-mode-active .woocommerce-Price-amount,
body.dotsun-inquiry-mode-active .single-product .price {
    display: none !important;
}

/* ---- HERO SEAMLESS TICKER MARQUEE BAR ---- */
.dotsun-hero-ticker-bar {
    position: relative;
    z-index: 5;
    background: #eb7024;
    color: #ffffff;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dotsun-hero-ticker-bar .ticker-track {
    display: inline-flex;
    align-items: center;
    animation: tickerScroll 25s linear infinite;
    will-change: transform;
}

.dotsun-hero-ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

.dotsun-hero-ticker-bar .ticker-content {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    padding-right: 40px;
    display: inline-block;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 100px;
    right: 40px;
    z-index: 3;
}

.scroll-indicator {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ---- ABOUT SECTION ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-color);
    padding: 24px 20px;
    text-align: center;
    min-width: 120px;
    box-shadow: var(--shadow-orange);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.exp-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--title-color);
}

.about-feature-item p {
    font-size: 13px;
    margin: 0;
    color: var(--text-color);
}

/* ---- CATEGORIES SECTION ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

.category-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.category-card-link {
    display: block;
    text-decoration: none;
}

.category-card-img {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #ffffff;
    padding: 12px;
}

.category-icon {
    font-size: 52px;
    color: rgba(255,255,255,0.7);
    z-index: 1;
    position: relative;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--white);
}

.category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, var(--cat-color, var(--primary-color)) 100%);
    opacity: 0.7;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 0.9;
}

.category-card-body {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.category-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0;
    transition: var(--transition);
}

.category-card:hover .category-name {
    color: var(--primary-color);
}

.category-count {
    font-size: 12px;
    color: var(--text-light);
    font-family: var(--font-heading);
    flex: 0 0 100%;
}

.category-arrow {
    color: var(--primary-color);
    font-size: 12px;
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    transform: translateX(4px);
}

/* ---- PRODUCTS GRID ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    position: relative;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 4px 10px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sale-badge {
    background: var(--primary-color);
    color: var(--white);
}

.featured-badge {
    background: var(--secondary-color);
    color: var(--white);
}

.product-card-img {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.product-card-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transition: transform 0.5s ease;
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateX(60px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-card-actions {
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.product-action-btn:hover,
.add-to-cart-btn.loading,
.add-to-cart-btn.added {
    background: var(--primary-color);
    color: var(--white);
}

.product-card-body {
    padding: 18px 20px;
}

.product-category {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--title-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    margin-bottom: 16px;
}

.product-price .price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .price del {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 6px;
}

.product-price .price ins {
    text-decoration: none;
}

.product-add-to-cart {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 10px 20px;
}

/* ---- WHY US SECTION ---- */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(235,112,36,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(44,45,139,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

.why-us-card {
    text-align: center;
    padding: 36px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-us-card:hover {
    border-color: rgba(235,112,36,0.2);
    background: rgba(255,255,255,0.03);
    transform: translateY(-4px);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--white);
    transition: var(--transition);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.why-us-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 0;
}

/* ---- PROCESS SECTION ---- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

@media (max-width: 1000px) {
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .process-steps::before { display: none; }
}

.process-step {
    text-align: center;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}

.process-step-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.process-step:hover .process-step-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--title-color);
}

.process-step p {
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

/* ---- CSR SECTION ---- */
.csr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.csr-list {
    margin: 24px 0;
}

.csr-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-dark);
}

.csr-list li i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.csr-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.csr-img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.csr-img-grid img:hover {
    transform: scale(1.03);
}

/* ---- BLOG SECTION ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}

.blog-card {
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 14px;
    min-width: 56px;
}

.blog-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.blog-month {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.blog-card-body {
    padding: 22px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.blog-meta span i {
    color: var(--primary-color);
    font-size: 11px;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--title-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .testimonials-slider { grid-template-columns: 1fr; }
}

.testimonial-card {
    background: var(--off-white);
    padding: 32px;
    position: relative;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--title-color);
}

.testimonial-role {
    display: block;
    font-size: 12px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* ---- CONTACT CTA SECTION ---- */
.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-cta-text p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin: 0;
}

.contact-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 46px;
    height: 46px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    color: var(--white);
    animation: none;
}

/* ---- PAGE.PHP LAYOUT ---- */
.page-content-wrapper {
    padding: 60px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.content-layout.no-sidebar {
    grid-template-columns: 1fr;
}

/* ---- BREADCRUMB WRAPPER (100% Pure Jet Black to Orange Gradient - Zero Blue) ---- */
.breadcrumb-wrapper {
    background: linear-gradient(110deg, #000000 0%, #0a0806 35%, #1a0f07 60%, #eb7024 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 70px 0 35px !important;
    position: relative !important;
}

.breadcrumb-title {
    font-size: 36px !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    font-family: 'Poppins', Arial, sans-serif !important;
}

.breadcrumb a {
    color: #eb7024 !important;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7) !important;
}

