/* ===================================
   Desire Procurement Solutions
   Custom CSS Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-orange: #E85C0D;
    --secondary-orange: #F97316;
    --dark-orange: #C74B00;
    --primary-gray: #333333;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --white: #FFFFFF;
    --black: #000000;
    --cyan: #00D4AA;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-gray);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-gray);
}

.text-orange {
    color: var(--primary-orange);
}

/* Buttons */
.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-orange:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===================================
   Header / Navigation
   =================================== */
.main-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--white);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    border-radius: 8px;
    margin-right: 8px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid var(--primary-orange);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -1px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 2px;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: var(--primary-gray);
    font-weight: 500;
    padding: 10px 20px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--primary-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-orange);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    padding-top: 100px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-illustration {
    width: 100%;
    height: auto;
    transform: scale(0.6);
    filter: drop-shadow(0 10px 30px rgba(232, 92, 13, 0.15));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-services-strip {
    background-color: var(--light-gray);
    padding: 30px 0;
    margin-top: 50px;
}

.service-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    transition: var(--transition);
    cursor: pointer;
}

.service-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-icon-box span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-gray);
}

.service-icon-box:hover {
    transform: translateY(-10px);
}

.service-icon-box:hover i {
    transform: scale(1.2);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gray);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
}

.section-header:not(.text-center) .section-title::after {
    left: 0;
    transform: none;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background-color: var(--white);
}

/* About Section Header with Clip */
.about-section-header {
    position: relative;
    margin-bottom: 40px;
}

.clip-wrapper {
    position: absolute;
    left: 10%;
    top: -30px;
    z-index: 10;
    animation: clipBounce 3s ease-in-out infinite;
}

.clip-icon {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.clip-wrapper:hover .clip-icon {
    transform: rotate(-10deg) scale(1.1);
}

@keyframes clipBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-3deg);
    }
}

.about-header-bar {
    background-color: var(--primary-orange);
    padding: 20px 0;
    padding-left: calc(10% + 140px);
}

.about-header-bar h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-orange);
    border-radius: 10px;
    z-index: -1;
}

.about-text {
    color: var(--medium-gray);
    margin-bottom: 15px;
    text-align: justify;
}

/* About Content Wrapper */
.about-content-wrapper {
    background-color: var(--light-gray);
    padding: 60px 0;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-intro .lead-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-intro p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* About Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    transform: rotate(10deg) scale(1.1);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-gray);
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   Mission & Vision Section
   =================================== */
.mission-section {
    background-color: var(--light-gray);
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-orange);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon i,
.vision-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vision-list {
    margin-top: 15px;
}

.vision-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.vision-list li i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background-color: var(--white);
}

.service-category {
    margin-bottom: 60px;
    padding-top: 30px;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-gray);
    display: flex;
    align-items: center;
}

.category-title i {
    color: var(--primary-orange);
    margin-right: 15px;
    font-size: 1.5rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background-color: var(--primary-orange);
}

.service-card-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.service-card ul {
    padding-left: 0;
}

.service-card ul li {
    padding: 5px 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Service Card Variations */
.housekeeping-card:hover {
    border-color: #00BCD4;
}

.housekeeping-card:hover::before {
    background-color: #00BCD4;
}

.pantry-card:hover {
    border-color: #8BC34A;
}

.pantry-card:hover::before {
    background-color: #8BC34A;
}

.printing-card:hover {
    border-color: #9C27B0;
}

.printing-card:hover::before {
    background-color: #9C27B0;
}

.safety-card:hover {
    border-color: #FF9800;
}

.safety-card:hover::before {
    background-color: #FF9800;
}

.packaging-card:hover {
    border-color: #795548;
}

.packaging-card:hover::before {
    background-color: #795548;
}

/* ===================================
   Clients Section - New Design
   =================================== */
.clients-section-new {
    background-color: var(--white);
    padding: 60px 0;
}

.clients-wrapper {
    background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #eee;
}

.clients-header {
    margin-bottom: 30px;
}

.clients-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clients-title-box i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.clients-title-box span {
    font-size: 0.8rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.clients-title-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin: 0;
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-gray), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--light-gray), transparent);
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-badge {
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-gray);
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid #eee;
    transition: var(--transition);
}

.client-badge:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: scale(1.05);
}

.clients-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 20px;
    margin-bottom: 0;
}

.clients-note i {
    margin-right: 5px;
    color: var(--primary-orange);
}

/* Old Clients styles kept for backward compatibility */
.clients-section {
    background-color: var(--light-gray);
}

.client-logo {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.client-logo span {
    font-weight: 600;
    color: var(--medium-gray);
    font-size: 0.85rem;
    text-align: center;
}

.clients-disclaimer {
    font-size: 0.8rem;
}

/* ===================================
   Why Choose Us Section - New Design
   =================================== */
.why-us-section-new {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.why-us-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 92, 13, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-intro {
    padding-right: 40px;
}

.why-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 16px;
    background-color: rgba(232, 92, 13, 0.1);
    border-radius: 30px;
}

.why-us-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-gray);
}

.why-us-intro p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-top: 5px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-feature-item {
    background-color: var(--white);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.why-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition);
}

.why-feature-item:hover .feature-icon-box {
    transform: rotate(10deg);
}

.feature-icon-box i {
    font-size: 1.2rem;
    color: var(--white);
}

.why-feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-gray);
}

.why-feature-item p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Old Why Choose Us styles kept for backward compatibility */
.why-us-section {
    background-color: var(--white);
}

.why-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.why-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: var(--primary-orange);
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background-color: var(--light-gray);
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(232, 92, 13, 0.15);
}

/* ===================================
   Contact Page - New Design
   =================================== */
.contact-cards-section {
    padding: 60px 0;
    background-color: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.cc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

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

.cc-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-gray);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card p a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.contact-card p a:hover {
    color: var(--primary-orange);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-info-box h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.contact-info-box > p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cf-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cf-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.cf-text strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-gray);
}

.cf-text span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.social-connect h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid #eee;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form Box */
.contact-form-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-form-new .form-control,
.contact-form-new .form-select {
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-form-new .form-control:focus,
.contact-form-new .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(232, 92, 13, 0.1);
}

.contact-form-new .form-floating label {
    color: var(--medium-gray);
}

.contact-form-new .form-floating label i {
    color: var(--primary-orange);
}

/* Map Section New */
.map-section-new {
    padding: 60px 0;
    background-color: var(--white);
}

.map-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.map-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-title i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.map-title h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-gray);
}

.map-title p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   Footer
   =================================== */
.main-footer {
    background-color: var(--primary-gray);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-brand .logo-icon {
    background-color: var(--primary-orange);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: var(--white);
    opacity: 0.8;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.social-link:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary-orange);
    margin-right: 15px;
    margin-top: 4px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright,
.footer-website {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-policy-links {
    font-size: 0.85rem;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--primary-orange);
}

.footer-policy-links .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.whatsapp-btn.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    color: var(--white);
    transform: translateY(-5px);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

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

.back-to-top:hover {
    background-color: var(--dark-orange);
    transform: translateY(-5px);
}

/* ===================================
   Scroll Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* ===================================
   Loading Animation
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: var(--shadow);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-illustration {
        transform: scale(0.5);
        margin-top: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        margin: 0 !important;
    }

    /* Why Choose Us Tablet */
    .why-us-intro {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-us-intro h2 {
        font-size: 2rem;
    }

    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-illustration {
        transform: scale(0.45);
    }

    .clip-wrapper {
        left: 5%;
        top: -20px;
    }

    .clip-icon {
        width: 70px;
    }

    .about-header-bar {
        padding-left: calc(5% + 80px);
    }

    .about-header-bar h2 {
        font-size: 1.3rem;
    }

    .about-content-wrapper {
        padding: 40px 0;
    }

    .about-intro {
        margin-bottom: 40px;
        text-align: center;
    }

    .about-intro h3 {
        font-size: 1.5rem;
    }

    .highlight-item {
        padding: 20px;
    }

    .highlight-item:hover {
        transform: translateY(-5px);
    }

    /* Categories Section Responsive */
    .header-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-text h2 {
        font-size: 1.4rem;
    }

    .categories-content {
        padding: 40px 0;
    }

    .category-card-new {
        padding: 25px;
    }

    .category-icon-new {
        width: 60px;
        height: 60px;
    }

    .card-number {
        font-size: 2rem;
    }

    /* Why Choose Us Responsive */
    .why-us-bg {
        padding: 50px 0;
    }

    .why-us-intro {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .why-us-intro h2 {
        font-size: 1.8rem;
    }

    .why-stats {
        justify-content: center;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    /* Clients Section Responsive */
    .clients-wrapper {
        padding: 30px 20px;
    }

    .clients-title-box {
        flex-direction: column;
        text-align: center;
    }

    .clients-title-box h3 {
        font-size: 1.2rem;
    }

    /* CTA Section Responsive */
    .cta-section-new {
        padding: 50px 0;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-icon-box {
        padding: 15px 5px;
    }

    .service-icon-box i {
        font-size: 2rem;
    }

    .service-icon-box span {
        font-size: 0.75rem;
    }

    .footer-top {
        padding: 40px 0 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .why-card {
        padding: 30px 20px;
    }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* ===================================
   Selection Styles
   =================================== */
::selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* ===================================
   Mega Menu Styles
   =================================== */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px 0;
    border-top: 3px solid var(--primary-orange);
    border-radius: 0 0 15px 15px;
}

.mega-menu-category {
    padding: 15px;
}

.mega-menu-category .category-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-gray);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.mega-menu-category .category-link i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
}

.mega-menu-category .category-link:hover {
    color: var(--primary-orange);
}

.mega-submenu li {
    margin-bottom: 8px;
}

.mega-submenu li a {
    color: var(--medium-gray);
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}

.mega-submenu li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.mega-submenu .view-all {
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 10px;
}

.mega-submenu .view-all i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* ===================================
   Page Banner Styles
   =================================== */
.page-banner {
    background-color: var(--primary-orange);
    padding: 120px 0 60px;
    margin-bottom: 0;
}

.page-banner .page-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-banner .page-title i {
    margin-right: 15px;
}

.page-banner .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Page Banner - New Design
   =================================== */
.page-banner-new {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
}

.banner-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-new .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.page-banner-new .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.page-banner-new .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner-new .breadcrumb-item.active {
    color: var(--white);
}

.page-banner-new .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: ">";
}

.page-title-new {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.title-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.banner-clip-icon {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: floatClip 4s ease-in-out infinite;
}

@keyframes floatClip {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

/* ===================================
   About Page Styles
   =================================== */
.about-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    background-color: rgba(232, 92, 13, 0.1);
    border-radius: 30px;
    margin-bottom: 15px;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-gray);
}

.about-intro-content .lead-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-intro-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #fff 100%);
    border-radius: 10px;
    border: 1px solid #eee;
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* About Features Stack */
.about-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-stack-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-stack-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.stack-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.stack-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-gray);
}

.stack-content p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-gray);
    margin-bottom: 0;
}

.mv-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mv-card-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.mv-card-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.mv-card-body {
    padding: 30px;
}

.mv-main-text {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.highlight-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-avatar i {
    font-size: 1.2rem;
    color: var(--white);
}

.highlight-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-gray);
}

.highlight-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.highlight-info p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    margin-top: 5px;
}

.vision-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--medium-gray);
    border-bottom: 1px solid #eee;
}

.vision-checklist li:last-child {
    border-bottom: none;
}

.vision-checklist li i {
    color: var(--primary-orange);
    font-size: 1rem;
}

/* Stats Section (About Page) */
.stats-section {
    padding: 60px 0;
    background-color: var(--white);
}

.stats-wrapper {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: statsPulse 8s ease-in-out infinite;
}

@keyframes statsPulse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20%, 20%); }
}

.stats-section .stat-box {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stats-section .stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: iconRing 2s ease-in-out infinite;
}

@keyframes iconRing {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.stats-section .stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background-color: rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.stats-section .stat-box:hover .stat-icon i {
    transform: scale(1.1);
}

.stats-section .stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stats-section .stat-box:hover .stat-num {
    color: var(--white);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stats-section .stat-box:hover .stat-text {
    color: var(--white);
    letter-spacing: 1px;
}

/* Count Animation Effects */
.stats-section .stat-num.counting {
    animation: countPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes countPop {
    0% {
        transform: scale(0.5) translateY(10px);
        opacity: 0.5;
    }
    60% {
        transform: scale(1.15) translateY(-5px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Number glow effect during counting */
.stats-section .stat-num.counting {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.wc-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    transition: var(--transition);
}

.why-choose-card:hover .wc-number {
    color: rgba(232, 92, 13, 0.1);
}

.wc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-choose-card:hover .wc-icon {
    transform: rotate(10deg) scale(1.1);
}

.wc-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-gray);
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===================================
   Category Cards (Home Page) - New Design
   =================================== */
.categories-section {
    background-color: var(--white);
}

.section-header-bar {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 30px 0;
    margin-bottom: 0;
}

.header-bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.header-text .header-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.header-text h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.categories-content {
    background-color: var(--light-gray);
    padding: 60px 0;
}

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

.category-card-new {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.category-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 92, 13, 0.15);
    border-color: var(--primary-orange);
}

.category-card-new:hover::before {
    transform: scaleX(1);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.category-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card-new:hover .category-icon-new {
    transform: rotate(10deg) scale(1.1);
}

.category-icon-new i {
    font-size: 1.8rem;
    color: var(--white);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    transition: var(--transition);
}

.category-card-new:hover .card-number {
    color: rgba(232, 92, 13, 0.15);
}

.category-card-new h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-gray);
    font-weight: 700;
}

.category-card-new p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-footer-link i {
    transition: var(--transition);
}

.category-card-new:hover .card-footer-link i {
    transform: translateX(5px);
}

/* Old category card styles kept for backward compatibility */
.category-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-orange);
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.category-card:hover .category-icon i {
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.category-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.category-link-text {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.category-link-text i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-card:hover .category-link-text i {
    margin-left: 10px;
}

/* ===================================
   CTA Section - New Design
   =================================== */
.cta-section-new {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.cta-icon i {
    font-size: 2rem;
    color: var(--white);
}

.cta-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content h3 span {
    display: block;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--white);
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Old CTA styles kept for backward compatibility */
.cta-section {
    background-color: var(--white);
}

.cta-box {
    background-color: var(--primary-orange);
    padding: 50px;
    border-radius: 20px;
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===================================
   Product Card Styles (Category Page)
   =================================== */
.product-card-link {
    display: block;
    text-decoration: none;
}

.product-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.product-image {
    background-color: var(--light-gray);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-card:hover .product-image {
    background-color: var(--light-gray);
}

.product-image i {
    font-size: 3rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.product-card:hover .product-image i {
    color: var(--primary-orange);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.product-list {
    margin-bottom: 15px;
}

.product-list li {
    padding: 5px 0;
    color: var(--medium-gray);
    font-size: 0.85rem;
    position: relative;
    padding-left: 18px;
}

.product-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.product-desc {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.view-products {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}

.view-products i {
    margin-left: 5px;
    transition: var(--transition);
}

.product-card:hover .view-products i {
    margin-left: 10px;
}

/* ===================================
   Product Detail Page
   =================================== */
.product-detail-section {
    padding-top: 30px;
}

.product-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.product-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-gray);
}

.product-description {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

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

.feature-list li {
    padding: 8px 0;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.product-brands h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tag {
    background-color: var(--light-gray);
    color: var(--primary-gray);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.brand-tag:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Product Variants */
.variant-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.variant-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow);
}

.variant-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.variant-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.variant-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-gray);
}

.variant-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

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

.variant-list li {
    padding: 5px 0;
    color: var(--medium-gray);
    font-size: 0.85rem;
    position: relative;
    padding-left: 15px;
}

.variant-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.7rem;
}

/* Why Buy Cards */
.why-buy-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.why-buy-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.why-buy-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.why-buy-card h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-gray);
}

.why-buy-card p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Related Products */
.related-card-link {
    display: block;
    text-decoration: none;
}

.related-card {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.related-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.related-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.related-card:hover .related-icon {
    background-color: var(--primary-orange);
}

.related-icon i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.related-card:hover .related-icon i {
    color: var(--white);
}

.related-card h5 {
    font-size: 0.95rem;
    color: var(--primary-gray);
    margin-bottom: 0;
}

/* ===================================
   Contact Page Specific
   =================================== */
.contact-page-section {
    background-color: var(--white);
}

.contact-text a {
    color: var(--medium-gray);
}

.contact-text a:hover {
    color: var(--primary-orange);
}

/* Map Section */
.map-section iframe {
    display: block;
}

/* ===================================
   Responsive - Multi Page
   =================================== */
@media (max-width: 991px) {
    .mega-menu {
        position: relative;
        width: 100%;
        padding: 15px;
    }

    .mega-menu .row {
        margin: 0;
    }

    .mega-menu-category {
        padding: 10px;
    }

    .page-banner {
        padding: 100px 0 40px;
    }

    .page-banner .page-title {
        font-size: 2rem;
    }

    .cta-box {
        padding: 30px;
        text-align: center;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .product-detail-content h2 {
        font-size: 1.6rem;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .page-banner .page-title {
        font-size: 1.6rem;
    }

    .page-banner .page-title i {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .category-card {
        padding: 30px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .product-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .product-cta .btn:last-child {
        margin-bottom: 0;
    }
}

/* ===================================
   Product Category Pages - New Design
   =================================== */
.category-intro-section {
    padding: 40px 0;
    background-color: var(--white);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.category-intro-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.category-intro-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 10px;
}

.category-intro-box p {
    color: var(--medium-gray);
    margin-bottom: 0;
    line-height: 1.7;
}

.intro-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.intro-stat {
    text-align: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(232, 92, 13, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: 12px;
}

.intro-stat .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.intro-stat .stat-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* Products Grid Section */
.products-grid-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

/* Section Header Bar - Clean Minimal Design for Product Pages */
.products-grid-section .section-header-bar,
.brands-section .section-header-bar,
.related-products-new .section-header-bar {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.products-grid-section .section-header-bar .header-number,
.brands-section .section-header-bar .header-number,
.related-products-new .section-header-bar .header-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(232, 92, 13, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    width: auto;
    height: auto;
    box-shadow: none;
}

.products-grid-section .section-header-bar h3,
.brands-section .section-header-bar h3,
.related-products-new .section-header-bar h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid var(--primary-orange);
}

@media (max-width: 768px) {
    .products-grid-section .section-header-bar .header-number,
    .brands-section .section-header-bar .header-number,
    .related-products-new .section-header-bar .header-number {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .products-grid-section .section-header-bar h3,
    .brands-section .section-header-bar h3,
    .related-products-new .section-header-bar h3 {
        font-size: 1.3rem;
        padding-left: 12px;
    }

    .products-grid-section .section-header-bar,
    .brands-section .section-header-bar,
    .related-products-new .section-header-bar {
        gap: 12px;
        margin-bottom: 30px;
    }
}

.product-card-new {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
}

.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(232, 92, 13, 0.15);
    border-color: var(--primary-orange);
}

.product-image-new {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-gray);
}

.product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Icon Placeholder for Product Cards */
.product-image-new.icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-image-new.icon-placeholder i {
    font-size: 4rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.product-card-new:hover .product-image-new.icon-placeholder i {
    transform: scale(1.15);
    color: var(--dark-orange);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 92, 13, 0.9) 0%, rgba(199, 75, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-new:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.product-card-new:hover .view-btn {
    transform: scale(1);
}

.product-content-new {
    padding: 25px;
}

.product-content-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gray);
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    padding: 6px 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.product-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.explore-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.explore-link i {
    transition: var(--transition);
}

.product-card-new:hover .explore-link i {
    transform: translateX(5px);
}

/* Responsive for Product Pages */
@media (max-width: 991px) {
    .category-intro-box {
        text-align: center;
        padding: 30px;
    }

    .intro-stats {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .category-intro-section {
        margin-top: -20px;
    }

    .intro-stats {
        gap: 15px;
    }

    .intro-stat {
        padding: 10px 15px;
    }

    .intro-stat .stat-num {
        font-size: 1.5rem;
    }

    .product-image-new {
        height: 180px;
    }
}

/* =====================================================
   SUBCATEGORY PRODUCT PAGES STYLES
===================================================== */

/* Variant Cards New */
.variant-card-new {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.variant-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 92, 13, 0.1);
    border-color: var(--primary-orange);
}

.variant-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.variant-icon-new i {
    font-size: 1.8rem;
    color: #fff;
}

.variant-card-new h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.variant-card-new p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.variant-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.variant-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 20px;
}

.variant-features li:last-child {
    border-bottom: none;
}

.variant-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: #fff;
}

.brands-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    padding: 30px 40px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.brands-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.brand-tags-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.brand-tag-new {
    background: #fff;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.brand-tag-new:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* Brand Cards with Logos */
.brand-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.brand-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 140px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(232, 92, 13, 0.15);
    border-color: var(--primary-orange);
}

.brand-card-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.brand-card-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.brand-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .brand-cards-container {
        gap: 15px;
    }

    .brand-card {
        width: 120px;
        padding: 15px;
    }

    .brand-card-logo {
        width: 60px;
        height: 60px;
    }

    .brand-card-logo img {
        max-width: 50px;
        max-height: 50px;
    }

    .brand-card-name {
        font-size: 0.8rem;
    }
}

/* Related Products New */
.related-products-new {
    padding: 60px 0;
    background: #f8f9fa;
}

.related-card-new {
    display: block;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.related-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(232, 92, 13, 0.15);
    border-color: var(--primary-orange);
}

.related-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.related-icon-new i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: var(--transition);
}

.related-card-new:hover .related-icon-new {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
}

.related-card-new:hover .related-icon-new i {
    color: #fff;
}

.related-card-new h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.related-card-new:hover h5 {
    color: var(--primary-orange);
}

/* Responsive for Subcategory Pages */
@media (max-width: 767px) {
    .variant-card-new {
        padding: 25px 20px;
    }

    .variant-icon-new {
        width: 60px;
        height: 60px;
    }

    .variant-icon-new i {
        font-size: 1.5rem;
    }

    .brands-box {
        padding: 25px 20px;
    }

    .brand-tag-new {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* ===================================
   Index Page Styles
   =================================== */

/* Decorative SVG Images */
.deco-svg {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(4px 8px 12px rgba(0,0,0,0.2));
    animation: floatDeco 5s ease-in-out infinite;
}

/* Hero Decorations */
.hero-deco-1 {
    width: 130px;
    top: 12%;
    left: 2%;
    transform: rotate(-20deg);
    animation-delay: 0s;
    --rotate: -20deg;
}

.hero-deco-2 {
    width: 110px;
    top: 18%;
    right: 5%;
    transform: rotate(15deg);
    animation-delay: 1s;
    --rotate: 15deg;
}

.hero-deco-3 {
    width: 120px;
    bottom: 20%;
    left: 4%;
    transform: rotate(10deg);
    animation-delay: 2s;
    --rotate: 10deg;
}

.hero-deco-4 {
    width: 115px;
    bottom: 15%;
    right: 3%;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
    --rotate: -15deg;
}

/* Clip SVG - positioned at bottom right of About section */
.section-clip {
    width: 160px;
    bottom: -60px;
    right: 8%;
    transform: rotate(15deg);
    animation-delay: 0.5s;
    --rotate: 15deg;
    z-index: 10;
}

/* Why Section Decorations */
.why-deco-1 {
    width: 110px;
    top: 8%;
    left: 1%;
    transform: rotate(-10deg);
    animation-delay: 0.5s;
    --rotate: -10deg;
}

.why-deco-2 {
    width: 120px;
    bottom: 8%;
    right: 1%;
    transform: rotate(20deg);
    animation-delay: 1.5s;
    --rotate: 20deg;
}

/* About Section Decorations */
.about-deco-1 {
    width: 130px;
    top: 5%;
    right: 3%;
    transform: rotate(15deg);
    animation-delay: 1s;
    --rotate: 15deg;
}

.about-deco-2 {
    width: 100px;
    bottom: 10%;
    left: 1%;
    transform: rotate(-12deg);
    animation-delay: 2s;
    --rotate: -12deg;
}

/* CTA Section Decorations */
.cta-deco-1 {
    width: 110px;
    top: 12%;
    left: 3%;
    transform: rotate(-15deg);
    animation-delay: 0.5s;
    --rotate: -15deg;
    opacity: 0.5;
}

.cta-deco-2 {
    width: 115px;
    bottom: 12%;
    right: 3%;
    transform: rotate(18deg);
    animation-delay: 1.5s;
    --rotate: 18deg;
    opacity: 0.5;
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-18px) rotate(var(--rotate, 0deg)); }
}

@media (max-width: 991px) {
    .deco-svg {
        display: none;
    }
}

/* Hero Section New */
.hero-new {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(232, 92, 13, 0.03) 0%, rgba(232, 92, 13, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-new .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-new h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-new h1 span {
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-new p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-new {
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 92, 13, 0.3);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 92, 13, 0.4);
    color: #fff;
}

.btn-secondary-new {
    background: #fff;
    color: #333;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-new:hover {
    border-color: #E85C0D;
    color: #E85C0D;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    max-width: 700px;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-card .icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.floating-card .card-text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.floating-card .card-text p {
    font-size: 0.75rem;
    margin: 0;
    color: #888;
}

/* Clients Section - Redesigned */
.clients-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.clients-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E85C0D' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.clients-header .section-label {
    color: #E85C0D;
}

.clients-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.clients-header p {
    color: #888;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.client-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.client-card:hover {
    background: #fff;
    border-color: rgba(232, 92, 13, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 92, 13, 0.2);
}

.client-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.client-card span {
    color: #333;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-card:hover span {
    opacity: 1;
    color: #E85C0D;
}

.clients-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .clients-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .clients-header h2 {
        font-size: 2rem;
    }
}

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

.client-logo {
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.client-logo:hover {
    opacity: 1;
    color: #E85C0D;
}

/* Why Choose Us New */
.why-section-new {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E85C0D;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #E85C0D;
}

.section-title-new {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.why-card:hover {
    background: #fff;
    border-color: rgba(232, 92, 13, 0.2);
    box-shadow: 0 15px 40px rgba(232, 92, 13, 0.1);
    transform: translateY(-5px);
}

.why-card .icon-wrap {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.why-card .icon-wrap i {
    font-size: 1.4rem;
    color: #fff;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Services Section New */
.services-section-new {
    padding: 100px 0;
    background: #ffede5 !important;
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M10 10h8v8h-8zM42 10h8v8h-8zM10 42h8v8h-8zM42 42h8v8h-8z' fill='%23E85C0D' fill-opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.services-bg-shape {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    color: #E85C0D;
}

.services-bg-shape.shape-1 {
    top: 10%;
    left: 5%;
    font-size: 120px;
    transform: rotate(-15deg);
}

.services-bg-shape.shape-2 {
    top: 15%;
    right: 8%;
    font-size: 100px;
    transform: rotate(20deg);
}

.services-bg-shape.shape-3 {
    bottom: 10%;
    left: 8%;
    font-size: 110px;
    transform: rotate(10deg);
}

.services-bg-shape.shape-4 {
    bottom: 20%;
    right: 5%;
    font-size: 130px;
    transform: rotate(-10deg);
}

.services-bg-shape.shape-5 {
    top: 50%;
    left: 2%;
    font-size: 90px;
    transform: rotate(25deg);
}

.services-bg-shape.shape-6 {
    top: 45%;
    right: 3%;
    font-size: 95px;
    transform: rotate(-20deg);
}

.services-section-new .container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(232, 92, 13, 0.15);
}

.service-card-top {
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.service-card-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.service-card-top i {
    font-size: 3rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card-top .service-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
}

.service-card-body {
    padding: 30px;
}

.service-card-body h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E85C0D;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card-new:hover .service-card-link {
    gap: 12px;
}

/* About Section New */
.about-section-new {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-content-new {
    padding-right: 50px;
}

.about-content-new p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stats .stat-box {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-stats .stat-box:hover {
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
}

.about-stats .stat-box:hover .stat-num,
.about-stats .stat-box:hover .stat-label {
    color: #fff;
}

.about-stats .stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E85C0D;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.about-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-image-new {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-new img {
    width: 60%;
    max-width: 300px;
    border-radius: 20px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(232, 92, 13, 0.3);
}

.about-badge h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.about-badge p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* CTA Section New */
.cta-section-new2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-new2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(232,92,13,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.5;
}

.cta-content-new {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content-new h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content-new h2 span {
    color: #E85C0D;
}

.cta-content-new p {
    font-size: 1.15rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #E85C0D 0%, #F97316 100%);
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 92, 13, 0.4);
    color: #fff;
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta-secondary:hover {
    border-color: #E85C0D;
    color: #E85C0D;
    transform: translateY(-3px);
}

/* Index Page Responsive */
@media (max-width: 991px) {
    .hero-new {
        min-height: auto;
        padding: 160px 0 60px;
        text-align: center;
    }

    .hero-new h1 {
        font-size: 2.5rem;
    }

    .hero-new p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
        text-align: center;
    }

    .hero-visual img {
        max-width: 400px;
        margin: 0 auto;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-new {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-new {
        padding: 140px 0 50px;
    }

    .hero-new h1 {
        font-size: 2rem;
    }

    .hero-new p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }

    .hero-visual img {
        max-width: 300px;
    }

    .section-title-new {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta-content-new h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 130px 0 40px;
    }

    .hero-new h1 {
        font-size: 1.65rem;
    }

    .hero-new p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-visual img {
        max-width: 240px;
    }

    .btn-primary-new,
    .btn-secondary-new {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
