/* Base Styles */
:root {
    --primary: #E51E2A;
    --primary-dark: #C21824;
    --secondary: #0C4A6E;
    --secondary-dark: #083452;
    --accent: #22C55E;
    --accent-dark: #16A34A;
    --dark: #111827;
    --gray-dark: #6B7280;
    --gray: #9CA3AF;
    --gray-light: #E5E7EB;
    --light: #F3F4F6;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header Styles - Fixed Size */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 0;
    height: 70px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.logo-cup {
    color: var(--accent);
    margin-left: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Hero Section - Adjusted for fixed header */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray-light) 100%);
    margin-top: 70px;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero .subheading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 400px;
    object-fit: contain;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-shapes .shape-1,
.hero-shapes .shape-2,
.hero-shapes .shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(229, 30, 42, 0.1);
    filter: blur(60px);
}

.hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: rgba(12, 74, 110, 0.1);
}

.hero-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    background: rgba(245, 158, 11, 0.1);
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background-color: var(--white);
}

.showcase-wrapper {
    margin-top: 40px;
    position: relative;
}

.product-rotator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.rotator-title {
    font-size: 1rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-names {
    position: relative;
    height: 60px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.product-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    cursor: pointer;
}

.product-name.active {
    opacity: 1;
    transform: translateY(0);
}

.product-name:hover {
    color: var(--primary);
}

.product-reveal {
    position: relative;
    min-height: 400px;
}

.product-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 1;
}

.product-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.product-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-details p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.product-sizes span {
    padding: 8px 16px;
    background-color: var(--light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Chairman's Message */
.message {
    padding: 60px 0;
    background-color: var(--white);
}

.message-card {
    display: flex;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.message-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--gray-light);
}

.message-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    flex: 1;
    padding: 40px;
}

.message-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.message-content .section-title::after {
    left: 0;
    transform: none;
}

.message-content blockquote {
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.message-content blockquote p {
    margin-bottom: 20px;
}

.message-content cite {
    font-style: normal;
    font-weight: 500;
    color: var(--secondary);
}

/* Updated Customers Section - New Design */
.customers {
    padding: 80px 0;
    background: radial-gradient(900px 400px at 15% 10%, rgba(99, 102, 241, 0.08), transparent 55%),
                radial-gradient(900px 400px at 85% 20%, rgba(2, 132, 199, 0.08), transparent 55%),
                var(--white);
    overflow: hidden;
}

.customers-header {
    text-align: center;
    margin-bottom: 40px;
}

.customers-header h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 40px);
    letter-spacing: -0.03em;
    color: var(--secondary);
}

.customers-header p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--gray-dark);
    font-size: 15px;
}

/* Viewport */
.customers-viewport {
    position: relative;
    overflow: hidden;
}

/* Edge fade */
.customers-viewport::before,
.customers-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    pointer-events: none;
    z-index: 2;
}

.customers-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.customers-viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), transparent);
}

/* Track */
.customers-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: run 26s linear infinite;
}

.customers-viewport:hover .customers-track {
    animation-play-state: paused;
}

/* Card */
.customer-card-new {
    width: 230px;
    min-width: 230px;
    height: 210px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.customer-card-new:nth-child(3n) {
    animation-delay: -1s;
}

.customer-card-new:nth-child(3n+1) {
    animation-delay: -2s;
}

.customer-card-new:nth-child(3n+2) {
    animation-delay: -3s;
}

.customer-card-new img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.18));
}

.customer-brand {
    margin-top: 10px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    color: var(--secondary);
}

/* Animations */
@keyframes run {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive for customers section */
@media (max-width: 768px) {
    .customer-card-new {
        width: 200px;
        min-width: 200px;
        height: 200px;
    }
    
    .customers-viewport::before,
    .customers-viewport::after {
        width: 50px;
    }
    
    .customers-header p {
        padding: 0 20px;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer - Soft Hover Effects for Social Icons */
.footer {
    background: linear-gradient(135deg, #faf7f4 0%, #f1ece5 100%);
    color: var(--dark);
    padding: 50px 0 20px;
    border-top: 1px solid #e5e0d8;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 35px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo-text {
    font-size: 2rem;
    margin-bottom: 18px;
    justify-content: flex-start;
    color: var(--secondary);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 22px;
    color: #5a5a5a;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid #ddd8d0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(229, 30, 42, 0.15);
}

.social-link img {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #5a5a5a;
    transition: var(--transition);
    padding: 5px 0;
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item span {
    font-size: 0.92rem;
    color: #5a5a5a;
    line-height: 1.4;
    font-weight: 500;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e0d8;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .days {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--secondary);
}

.hours-item .time {
    color: #5a5a5a;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #e5e0d8;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #7a7a7a;
    font-size: 0.85rem;
    font-weight: 500;
}

.developer a {
    color: var(--primary);
    transition: var(--transition);
    font-weight: 600;
}

.developer a:hover {
    color: var(--primary-dark);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .message-card {
        flex-direction: column;
    }
    
    .message-image {
        min-height: 300px;
    }
    
    .product-card {
        flex-direction: column;
    }
    
    .product-image {
        min-height: 300px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        height: auto;
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer {
        padding: 45px 0 18px;
    }
    
    .footer-main {
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-brand .logo-text {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .hours-item {
        text-align: center;
    }
    
    .footer-content {
        gap: 30px;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-delay="100"] {
    animation-delay: 0.1s;
}

[data-delay="200"] {
    animation-delay: 0.2s;
}

[data-delay="300"] {
    animation-delay: 0.3s;
}

[data-delay="400"] {
    animation-delay: 0.4s;
}

[data-delay="500"] {
    animation-delay: 0.5s;
}

[data-delay="600"] {
    animation-delay: 0.6s;
}