/* Import Color Variables */
@import './colors.css';

/* Global Styles */
* {
    outline: none !important;
}

*:focus,
*:focus-visible,
*:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Slider (scoped to avoid affecting global styles) */
.hero-slider {
    /* padding: 3rem 0; */
    overflow: hidden;
}

/* Different background colors for each slide (full width) */
.hero-slider .main#beach::before {
    background: linear-gradient(135deg, #faf0ff 0%, #f3e0fe 100%);
}

.hero-slider .main#savanna::before {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.hero-slider .main#glacier::before {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.hero-slider .main#algaecide::before {
    background: linear-gradient(135deg, #e7fcee 0%, #d9fbcf 100%);
}

.hero-slider .main#coral::before {
    background: linear-gradient(135deg, #d1eafa 0%, #a7d1f3 100%);
}

.hero-slider * {
    box-sizing: border-box;
}

.hero-slider img {
    max-width: 100%;
}

.hero-slider a {
    text-decoration: none;
    color: inherit;
}

.hero-slider .mySwiper {
    display: flex;
    flex-grow: 1;
    position: relative;
    min-height: 70vh;
}

.hero-slider .main-wrapper {
    max-width: 1100px;
    border-radius: 12px;
    width: 100%;
    position: relative;
}

.hero-slider .main {
    padding: 32px 0 24px;
    display: flex;
    flex-grow: 1;
    position: relative;
    min-height: 480px;
    overflow: visible;
}

.hero-slider .main::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-slider .main > * {
    position: relative;
    z-index: 1;
}

.hero-slider .left-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 420px;
    gap: 20px;
}

.hero-slider .main-header {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}

.hero-slider .main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.05;
    color: #111827;
}

.hero-slider .main-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 12px;
    margin-bottom: 32px;
    color: #374151;
}

.hero-slider .main-content__title {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    margin-bottom: 12px;
    color: #1f2937;
}

.hero-slider .main-content__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: #4b5563;
}

.hero-slider .more-menu {
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #073255;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.hero-slider .more-menu svg {
    width: 26px;
    height: 18px;
    transition: transform 0.25s ease;
}

.hero-slider .more-menu::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.hero-slider .more-menu:hover {
    color: #0a4a7a;
    transform: translateX(2px);
}

.hero-slider .more-menu:hover svg {
    transform: translateX(3px);
}

.hero-slider .more-menu:hover::after {
    transform: scaleX(1);
}
.hero-slider .center {
    display: flex;
    margin-left: 0;
    position: relative;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.hero-slider .bottle-bg {
    width: 666px;
    height: 480px;
    object-fit: cover;
    border-radius: 160px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.hero-slider .bottle-img {
    position: absolute;
    top: -6%;
    left: 0;
    transform: scale(1.4);
}

.hero-slider .swiper-pagination {
    position: absolute;
    right: 30px;
    left: auto;
    top: 100px;
    width: auto;
    bottom: auto;
    z-index: 2;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #111827;
}

.hero-slider .button-wrapper {
    position: absolute;
    right: 30px;
    bottom: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-slider .swiper-button {
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    color: #111827;
}

.hero-slider .swiper-button svg {
    width: 28px;
}

.hero-slider .swiper-button + .swiper-button {
    margin-left: 0;
}

.hero-slider .swiper-button:hover {
    border-color: #111827;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    color: #111827;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.hero-slider .swiper-prev-button svg {
    transform: rotate(-180deg);
}

.hero-slider .swiper-slide {
    opacity: 0 !important;
    transition: 0.4s;
}

.hero-slider .swiper-slide-active {
    opacity: 1 !important;
}

.hero-slider .swiper-slide .main-wrapper > *,
.hero-slider .swiper-slide .main-content > * {
    transform: translateY(-20px);
    opacity: 0;
    transition-duration: 0.8s;
}

.hero-slider .swiper-slide-active .main-wrapper > *,
.hero-slider .swiper-slide-active .main-content > * {
    transform: none;
    opacity: 1;
}

.hero-slider .swiper-slide .bottle-bg {
    transition-duration: 0.6s;
    opacity: 0;
    object-position: 60%;
}

.hero-slider .swiper-slide-active .bottle-bg {
    opacity: 1;
    transform: none;
    object-position: 50%;
}

.hero-slider .swiper-slide .bottle-img {
    transition-duration: 0.8s;
    transform: scale(1.2);
    opacity: 0;
}

.hero-slider .swiper-slide-active .bottle-img {
    opacity: 1;
    transform: scale(0.8);
}

@media screen and (max-width: 930px) {
    .hero-slider .main {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
    .hero-slider .left-side {
        text-align: center;
        max-width: 450px;
    }
    .hero-slider .center {
        margin-left: 0;
        margin-bottom: 56px;
    }
    .hero-slider .button-wrapper {
        top: 0;
        left: 0;
        width: 100%;
        justify-content: space-between;
        padding: 0 40px;
    }
    .hero-slider .swiper-pagination {
        left: 40px;
        top: auto;
        bottom: 40px;
    }

    .hero-slider .swiper-slide-active .bottle-img{
        opacity: 1;
        transform: scale(0.8);
        top: -12%;
    }
}

@media (min-width: 1024px) {
    .hero-slider .main-wrapper {
        width: 100%;
        max-width: 1200px;
        /* margin: 0 auto; */
    }
    .hero-slider .main {
        justify-content: space-between;
        align-items: center;
        gap: 32px;
    }
    .hero-slider .left-side {
        max-width: 520px;
        align-self: center;
    }
    .hero-slider .center {
        margin-left: auto;
    }
    .hero-slider .button-wrapper {
        left: 50%;
        right: auto;
        bottom: 32px;
        transform: translateX(-50%);
        width: auto;
        padding: 0;
        justify-content: center;
    }
    .hero-slider .swiper-pagination {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 16px;
        transform: translateX(-50%);
    }
    
}

@media screen and (max-width: 575px) {
    /* .hero-slider {
        padding: 1.5rem 0;
    } */
    .hero-slider .main {
        padding: 24px 0 16px;
    }
    .hero-slider .left-side {
        max-width: 100%;
        padding: 0 12px;
    }
    .hero-slider .bottle-bg {
        width: 240px;
        height: 340px;
    }
    .hero-slider .bottle-img {
        transform: scale(1.2);
    }
    .hero-slider .button-wrapper {
        padding: 0 20px;
    }

    .hero-slider .swiper-slide-active .bottle-img{
    opacity: 1;
        transform: scale(1.4);
        top: 20%;
    }
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-quote:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}

.btn-quote:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

.btn-quote:focus {
    outline: none !important;
    box-shadow: none !important;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(0,0,0,0.05);
}

.footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f4f4f5;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.footer-icon:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.footer-icon:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Footer Dark Theme */
.footer-icon-dark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-icon-dark:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(221, 187, 90, 0.3);
}

.footer-icon-dark:focus {
    outline: none !important;
    box-shadow: none !important;
}

.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about-figure {
    grid-column: span 5 / span 5;
    background: linear-gradient(145deg, #e0f2fe 0%, #f0fdf4 100%);
    border-radius: 40px 40px 220px 40px;
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    max-height: 480px;
    display: flex;
    align-items: center;
}

.about-figure::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 32px 32px 200px 32px;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: cover;
    border-radius: 28px 28px 200px 28px;
}

.about-copy {
    grid-column: span 7 / span 7;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.85rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
}

.about-body {
    color: #475569;
    font-size: 1rem;
    max-width: 620px;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: #0f172a;
}

.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #0f172a;
}

.about-bullets i {
    color: #0ea5e9;
    margin-top: 2px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-link {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.about-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0f172a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.about-link:hover::after {
    transform: scaleX(1);
}

@media (max-width: 640px) {
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .about-figure, .about-copy {
        grid-column: span 1 / span 1;
    }
    .about-figure {
        border-radius: 32px;
        max-height: 380px;
        padding: 14px;
    }
    .about-image {
        border-radius: 22px;
        max-height: 340px;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 3rem 0;
    }
    .about-figure {
        max-height: 320px;
        padding: 12px;
        border-radius: 24px;
    }
    .about-figure::after {
        inset: 10px;
        border-radius: 20px;
    }
    .about-image {
        max-height: 280px;
        border-radius: 18px;
    }
}

/* Quote Modal */
.quote-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.quote-modal.is-open {
    display: flex;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}

.quote-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    max-width: 560px;
    width: 92%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    z-index: 1;
}

.quote-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111827;
    transition: all 0.2s ease;
}

.quote-modal__close:hover {
    background: #111827;
    color: #fff;
}

.quote-modal__header {
    margin-bottom: 1.25rem;
}

.quote-modal__kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
}

.quote-modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.quote-modal__subtitle {
    color: #475569;
    font-size: 0.95rem;
}

.quote-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-modal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quote-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
}

.quote-modal__field span {
    color: #0f172a;
}

.quote-modal__field input,
.quote-modal__field select,
.quote-modal__field textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-modal__field input:focus,
.quote-modal__field select:focus,
.quote-modal__field textarea:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17,24,39,0.12);
    outline: none;
}

.quote-modal__field--full {
    grid-column: span 2 / span 2;
}

@media (max-width: 640px) {
    .quote-modal__dialog {
        padding: 1.25rem;
    }
    .quote-modal__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .quote-modal__field--full {
        grid-column: span 1 / span 1;
    }
}

/* Navbar Styles */
.navbar-scrolled {
    background: var(--color-white-90);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--color-black-10);
    border-bottom: 1px solid var(--color-gray-200);
}

.navbar-scrolled nav {
    background: transparent;
}

.navbar-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

/* Mobile Menu Styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    position: relative;
}

.mobile-menu.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

.mobile-menu.active::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu.active::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-menu.active::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.5);
    border-radius: 3px;
}

.mobile-menu.active::-webkit-scrollbar-thumb:hover {
    background-color: rgba(156, 163, 175, 0.7);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-secondary-dark);
    border-radius: 5px;
}

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

/* Focus Styles - Removed outlines */
a:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Transition Utilities */
.transition-smooth {
    transition: all 0.3s ease-in-out;
}

/* Text Selection Styles */
::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

::-moz-selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

/* Selection for specific elements */
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
h6::-moz-selection {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}

/* Selection for links */
a::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

/* Gradient Utility Classes */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.bg-gradient-gold-dark {
    background: var(--gradient-gold-dark);
}

.bg-gradient-light {
    background: var(--gradient-light);
}

.bg-gradient-overlay {
    background: var(--gradient-overlay);
}

/* Text gradient effect */
.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process Section - Outlined Numbers */
.process-number {
    -webkit-text-stroke: 2px #111827;
    color: transparent;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Why Choose Us - Benefit Cards Hover */
.why-choose-benefit {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.why-choose-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 106, 179, 0.08), transparent);
    transition: left 0.6s ease;
}

.why-choose-benefit:hover::before {
    left: 100%;
}

.why-choose-benefit:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(46, 106, 179, 0.07) 0%, rgba(46, 106, 179, 0.03) 100%);
    box-shadow: 0 20px 40px rgba(46, 106, 179, 0.15), 0 0 0 1px rgba(46, 106, 179, 0.12);
}

.why-choose-benefit:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
    background: white;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 25px rgba(46, 106, 179, 0.25);
}

.why-choose-benefit:hover .benefit-icon i {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.why-choose-benefit:hover h3 {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

.why-choose-benefit:hover p {
    color: var(--color-gray-700);
}

.benefit-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-benefit h3 {
    transition: all 0.3s ease;
}

.why-choose-benefit p {
    transition: color 0.3s ease;
}

/* Process Section - Step Cards Hover */
.process-step {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
}

.process-step:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(221, 187, 90, 0.05) 0%, rgba(221, 187, 90, 0.02) 100%);
}

.process-step:hover .process-number {
    -webkit-text-stroke: 2px var(--color-primary);
    transform: scale(1.05);
}

.process-step:hover h3 {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

.process-step h3 {
    transition: all 0.3s ease;
}

/* Process Section Background */
.process-section {
    position: relative;
    background-image: url('/assets/images/home/process-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

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

/* CTA Section */
.cta-banner {
    position: relative;
    background: var(--color-primary);
    border-radius: 24px;
    padding: 60px 50px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
}

.cta-heading {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-heading, sans-serif);
}

.cta-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 500px;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--color-primary);
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

/* Decorative Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-top-left {
    width: 200px;
    height: 200px;
    background: #60a5fa;
    top: -100px;
    left: -100px;
    opacity: 0.3;
}

.cta-shape-bottom-right {
    width: 250px;
    height: 250px;
    background: var(--color-primary-light);
    bottom: -125px;
    right: -125px;
    opacity: 0.3;
}

.cta-shape-top-right {
    width: 180px;
    height: 180px;
    background: var(--color-secondary-light);
    top: -90px;
    right: -90px;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .cta-shape-top-left {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }
    
    .cta-shape-bottom-right {
        width: 180px;
        height: 180px;
        bottom: -90px;
        right: -90px;
    }
    
    .cta-shape-top-right {
        width: 120px;
        height: 120px;
        top: -60px;
        right: -60px;
    }
}

/* Our Partners Section */
.partners-container {
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    display: flex;
    width: fit-content;
}

.partners-logos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
    opacity: 1;
    min-width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.partner-logo i {
    transition: all 0.3s ease;
}

.partner-logo:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

@keyframes slidein {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 40px;
        padding: 0 20px;
    }
    
    .partner-logo {
        min-width: 80px;
        height: 60px;
    }
    
    .partner-logo i {
        font-size: 2.5rem !important;
    }
    
    .partners-slider {
        animation-duration: 20s;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
        font-size: 28px;
    }
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.stat-accent-line {
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    flex-shrink: 0;
    min-height: 60px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading, sans-serif);
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Testimonial Image Section */
.testimonial-image-wrapper {
    position: relative;
}

.testimonial-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.testimonial-accent {
    position: absolute;
    top: 0;
    right: -20px;
    width: 100px;
    height: 100%;
    background: var(--color-primary);
    z-index: 0;
    border-radius: 20px 0 0 20px;
}

.testimonial-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 1rem;
    max-width: 320px;
    z-index: 2;
}

.testimonial-profile {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-stars i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        gap: 1rem;
    }
    
    .stat-accent-line {
        min-height: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonial-image {
        height: 400px;
    }
    
    .testimonial-accent {
        right: -10px;
        width: 60px;
    }
    
    .testimonial-card {
        bottom: 20px;
        right: 20px;
        max-width: 280px;
        padding: 1.25rem;
    }
}

/* Products Slider */
.products-slider {
    padding: 50px 0;
    width: 100%;
    box-sizing: border-box;
}

.products-slider .slider-wrapper {
    width: 1140px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.products-slider .slider-container {
    display: flex;
    height: 400px;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s ease;
}

.products-slider .slider-item {
    min-width: 250px;
    height: 350px;
    border-radius: 20px;
    flex-shrink: 0;
    padding-top: 25px;
    box-sizing: border-box;
    outline: none;
    border: none;
}

.products-slider .slider-item:focus,
.products-slider .slider-item:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

.products-slider .slider-item.focus .slider-item-shake-img img {
    height: 200px;
}

.products-slider .slider-item-shake-img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0px auto;
    position: relative;
    overflow: visible;
}

.products-slider .slider-item-shake-img::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 70px;
    height: 15px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.6) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    z-index: 0;
    transition: 1s ease;
}

.products-slider .slider-item.focus .slider-item-shake-img::after {
    width: 90px;
    transition: 1s ease;
}

.products-slider .slider-item-shake-img img {
    position: absolute;
    z-index: 1;
    height: 170px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0);
    transition: 1s ease;
    object-fit: contain;
}

.products-slider .slider-item:hover .slider-item-shake-img img {
    height: 200px;
}

.products-slider .slider-item:hover .slider-item-shake-img::after {
    width: 90px;
    transition: 1s ease;
}

.products-slider .shake-title {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 10px;
}

.products-slider .slider-item-price {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.products-slider .slider-item-button {
    text-align: center;
    margin-top: 30px;
}

.products-slider .slider-item-button button {
    height: 44px;
    width: 140px;
    border-radius: 8px;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.products-slider .slider-item-button button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.products-slider .slider-item-button button:hover::before {
    width: 300px;
    height: 300px;
}

.products-slider .slider-item-button button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.products-slider .slider-item-button button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Product 1: Hydrochloric Acid */
.products-slider .slider-item.product1 {
    background: #f0f9ff;
}

.products-slider .slider-item.product1 .slider-item-shake-img {
    background: #0a4a7a;
}

.products-slider .slider-item.product1 .shake-title {
    color: #0a4a7a;
}

.products-slider .slider-item.product1 .slider-item-button button {
    background: #0a4a7a;
    color: #f0f9ff;
}

/* Product 2: Aluminum Sulphate */
.products-slider .slider-item.product2 {
    background: #fef3c7;
}

.products-slider .slider-item.product2 .slider-item-shake-img {
    background: var(--color-primary);
}

.products-slider .slider-item.product2 .shake-title {
    color: var(--color-primary-dark);
}

.products-slider .slider-item.product2 .slider-item-button button {
    background: var(--color-primary);
    color: #fef3c7;
}

/* Product 3: Hydroxy Stearic Acid */
.products-slider .slider-item.product3 {
    background: #e0e7ff;
}

.products-slider .slider-item.product3 .slider-item-shake-img {
    background: #4f46e5;
}

.products-slider .slider-item.product3 .shake-title {
    color: #4f46e5;
}

.products-slider .slider-item.product3 .slider-item-button button {
    background: #4f46e5;
    color: #e0e7ff;
}

/* Product 4: Soda Ash Flakes */
.products-slider .slider-item.product4 {
    background: #fce7f3;
}

.products-slider .slider-item.product4 .slider-item-shake-img {
    background: #ec4899;
}

.products-slider .slider-item.product4 .shake-title {
    color: #ec4899;
}

.products-slider .slider-item.product4 .slider-item-button button {
    background: #ec4899;
    color: #fce7f3;
}

/* Product 5: Algaecide */
.products-slider .slider-item.product5 {
    background: #d1fae5;
}

.products-slider .slider-item.product5 .slider-item-shake-img {
    background: #10b981;
}

.products-slider .slider-item.product5 .shake-title {
    color: #10b981;
}

.products-slider .slider-item.product5 .slider-item-button button {
    background: #10b981;
    color: #d1fae5;
}

.products-slider .slider-ctrl-btn {
    width: 750px;
    max-width: 100%;
    margin: 25px auto 0;
    position: relative;
    height: 50px;
}

.products-slider .slider-ctrl-btn #prevBtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    color: #D6D5DA;
    background: none;
    border: none;
    font-size: 45px;
    cursor: pointer;
    transition: 0.5s ease;
    outline: none;
}

.products-slider .slider-ctrl-btn #prevBtn:focus,
.products-slider .slider-ctrl-btn #prevBtn:focus-visible,
.products-slider .slider-ctrl-btn #prevBtn:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.products-slider .slider-ctrl-btn #nextBtn {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    width: 50px;
    color: #D6D5DA;
    background: none;
    border: none;
    font-size: 45px;
    cursor: pointer;
    transition: 0.5s ease;
    outline: none;
}

.products-slider .slider-ctrl-btn #nextBtn:focus,
.products-slider .slider-ctrl-btn #nextBtn:focus-visible,
.products-slider .slider-ctrl-btn #nextBtn:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.products-slider .slider-ctrl-btn #prevBtn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.products-slider .slider-ctrl-btn #nextBtn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .products-slider .slider-wrapper {
        height: 420px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .products-slider .slider-container {
        height: 420px;
    }
    
    .products-slider .slider-item {
        min-width: 100%;
        width: 100%;
        max-width: 280px;
        height: 380px;
        margin: 0 auto;
    }
    
    .products-slider .slider-container {
        gap: 0;
    }
}

/* Products Grid - Center last 2 cards */
.products-grid-wrapper > div:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 1023px) {
    .products-grid-wrapper > div:last-child {
        flex-direction: column;
        align-items: center;
    }
    
    .products-grid-wrapper > div:last-child > div {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .products-grid-wrapper > div:last-child {
        flex-direction: row;
    }
    
    .products-grid-wrapper > div:last-child > div {
        max-width: calc(50% - 0.75rem);
        width: calc(50% - 0.75rem);
    }
}

/* Form Error Messages - Persistent, no auto-hide */
#form-message {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

#form-message:not(.hidden) {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0);
    visibility: visible !important;
}

#form-message.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden !important;
}

/* Field Error Styles */
input.border-red-500,
textarea.border-red-500,
select.border-red-500 {
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Field Error Messages - Persistent, no auto-hide */
[id$="-error"] {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: opacity 0.2s ease, max-height 0.2s ease, margin-top 0.2s ease;
}

[id$="-error"]:not(.hidden) {
    display: block !important;
    opacity: 1 !important;
    max-height: 100px !important;
    margin-top: 0.25rem !important;
    overflow: visible !important;
    visibility: visible !important;
}

/* Ensure error messages stay visible when shown - override any hiding */
[id$="-error"].hidden {
    display: none !important;
    opacity: 0 !important;
    max-height: 0 !important;
    margin-top: 0 !important;
    visibility: hidden !important;
}

/* Career Form Message - Persistent, no auto-hide */
#career-message {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

#career-message:not(.hidden) {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0);
    visibility: visible !important;
}

#career-message.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden !important;
}

