:root {
    --primary: #0645A0;
    --primary-dark: #042D6B;
    --primary-light: #E0E7FF;
    --accent-red: #8B0000;
    --accent-gradient: linear-gradient(135deg, #8B0000 0%, #DC2626 100%);
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-700: #334155;
    --gray-500: #64748B;
    --gray-300: #CBD5E1;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0645A0 0%, #042D6B 100%);
    --gradient-2: linear-gradient(135deg, #042D6B 0%, #0F172A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    /* Initial offset matches top-bar height */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: inline-block;
    /* Ensure proper sizing */
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 40vh;
    /* Fixed height as requested */
    min-height: 500px;
    overflow: hidden;
    background: var(--dark);
    user-select: none;
    /* Prevent text selection while dragging */
}

.carousel-track {
    display: flex;
    /* Flex layout for sliding */
    height: 100%;
    cursor: grab;
    /* Mouse cursor */
}

.carousel-track:active {
    cursor: grabbing;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    /* Force 100% width and no shrink */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Removed .hero-slide.active specific opacity styles as we show by transform */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-1 {
    background: var(--gradient);
}

.gradient-2 {
    background: var(--gradient-2);
}

.image-bg {
    background-size: cover !important;
    background-position: center !important;
}

.image-bg .overlay {
    display: none !important;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 8px 24px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.top-contact a:hover {
    color: #DC2626;
}

/* Updated Hero Split Style */
.hero-split {
    display: flex;
    height: 100%;
}

.hero-left {
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    padding: 60px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    z-index: 2;
}

.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-image: url('Assets/Slides/ban-2.jpg');
}

/* Product Scrolling Section */
.product-scroller {
    padding: 60px 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.scroller-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.scroller-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.product-item {
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 8px;
}

/* Inquiry Section (Contact Form) */
.inquiry-section {
    background: var(--white);
    padding: 100px 24px;
}

.inquiry-section.fade-up {
    opacity: 100;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.inquiry-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.inquiry-info {
    background: var(--primary);
    /* Follow color sequence - Blue */
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.inquiry-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.inquiry-item p {
    font-size: 15px;
    opacity: 0.9;
}

.inquiry-form-wrapper {
    background: white;
    padding: 60px 50px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    background: var(--accent-gradient);
    /* Red Gradient as requested for elements */
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Ensure inquiry section header is visible */
.inquiry-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.inquiry-section .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.inquiry-section .section-header p {
    color: var(--gray-500);
    font-size: 16px;
}

.faq-section.fade-up {

    opacity: 100;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;

}

/* Updated Logo Style */
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-main {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
    font-style: italic;
    display: flex;
    align-items: center;
}

.logo-main::before {
    content: '';
    display: inline-block;
    height: 35px;
    width: 80px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    transform: rotate(-10deg);
    opacity: 0.2;
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0.3;
}

.nav-btn.prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.nav-btn.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: white;
    /* White background */
    color: var(--dark);
    /* Dark text */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid white;
    /* Solid outline (merges if bg is white, but keeps structure) */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    /* Glowing effect */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    /* Bold as requested */
    color: black;
    /* Black as requested */
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--dark);
    font-style: italic;
    /* Italics as requested */
    font-weight: 600;
    max-width: 550px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    /* Drop shadow */
}

.hero-right,
.hero-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

/* Ensure images inside slides cover the area */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 24px;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

/* Customized Kitchen Solutions Section */
.process-section {
    padding: 100px 24px;
    background: white;
    text-align: center;
}

.process-container {
    max-width: 1280px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 60px 0;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    width: 150px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #FF0000;
    /* Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s;
}

.step-icon:hover {
    transform: scale(1.1);
}

.step-label {
    color: #FF0000;
    font-weight: 600;
    font-size: 14px;
}

.step-connector {
    height: 2px;
    background: #FF0000;
    width: 50px;
    margin-top: -30px;
    /* Align with center of icon roughly */
}

.components-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.component-pill {
    background: #FFE4E6;
    /* Light pinkish */
    color: #9F1239;
    /* Dark red */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    cursor: default;
}

.component-pill:hover {
    background: #FF0000;
    color: white;
    transform: translateY(-3px);
}

.subtext {
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto 50px;
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }

    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: inline-block;
    /* Ensure it respects width for animation if needed */
}

.stat-label {
    font-size: 15px;
    color: var(--gray-500);
    margin-top: 8px;
}

/* about section left Image and write text about section 1 */
.about {
    padding: 100px 24px;
    padding-bottom: 10px;
    background: var(--gray-100);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-content h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--primary);
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 100px 24px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--gray-100);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    background: white;
    border-color: var(--gray-300);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 100px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* New Customized Section */
.customized-header {
    color: #FF0000;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 24px 30px;
    color: var(--gray-300);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 24px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-carousel {
        padding-top: 0;
        /* Remove padding */
        height: 80vh;
        /* Request: 80vh on mobile */
        min-height: auto;
    }

    /* Request: HIDE the first hero section (slide 1) on mobile */
    .hero-slide:first-child {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure image comes first on mobile for all about sections */
    .about-image {
        order: -1;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Fix Inquiry Section Mobile */
    .inquiry-container {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column-reverse;
        /* Drop Info/Detail to bottom, show Form on top */
    }

    .inquiry-info {
        padding: 40px 24px;
        /* Adjust padding for mobile */
    }

    .inquiry-form-wrapper {
        padding: 40px 24px;
        /* Adjust padding for mobile */
    }
}

/* Add padding between icon and text in inquiry section */
.inquiry-item h4 i {
    margin-right: 12px;
}

/* Floating Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 0;
    top: auto;
    /* Unset top */
    bottom: 20%;
    /* Request: above 20% of the bottom */
    transform: translateY(0);
    /* Remove center transform */
    z-index: 1002;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Simplified Hero for About Page */
.about-hero {
    height: 50vh !important;
    min-height: 400px;
}

.about-hero .hero-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero .image-bg .overlay {
    display: block !important;
    /* Ensure opacity overlay is visible */
}

.about-hero .hero-content.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero .hero-content h1 {
    color: white;
    /* Ensure text is readable on bg */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
}

.about-hero .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

/* Infinite Scroll Images for About Section */
.infinite-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.infinite-scroll-track {
    display: flex;
    width: max-content;
    animation: scrollSlides 15s linear infinite;
}

.infinite-scroll-track img {
    height: 100%;
    /* Match container height */
    width: auto;
    /* Maintain aspect ratio */
    min-width: 100%;
    /* Ensure it fills at least the container */
    object-fit: cover;
    flex-shrink: 0;
}

/* Reverse Scroll for 2nd section if needed */
.infinite-scroll-track.reverse-scroll {
    animation: scrollSlidesReverse 15s linear infinite;
}

@keyframes scrollSlides {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way (since we have 2 sets of images) */
    }
}

@keyframes scrollSlidesReverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    background: var(--dark);
    /* Fallback */
    border-radius: 4px 0 0 4px;
    filter: grayscale(100%);
    opacity: 0.6;
}

.social-sidebar a:hover {
    filter: grayscale(0%);
    opacity: 1;
    width: 55px;
    /* Slight pop effect */
}

.social-whatsapp {
    background: #25D366;
}

.social-call {
    background: #0645A0;
}

.social-instagram {
    background: #E1306C;
}

.social-youtube {
    background: #FF0000;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Modern FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: var(--gray-100);
}

faq-section fade-up .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    padding: 0 24px;
    color: var(--gray-500);
    line-height: 1.8;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
    border-top-color: var(--gray-100);
}

.social-instagram {
    background: #E1306C;
}

.social-youtube {
    background: #FF0000;
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
}

/* Modern FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: var(--gray-100);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    padding: 0 24px;
    color: var(--gray-500);
    line-height: 1.8;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
    border-top-color: var(--gray-100);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    /* To mimic 'x' from '+' or just rotate arrow */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Navbar Slide Left Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}