/* Theme Variables */
:root {
    /* Colors */
    --primary-color: #E53935;
    --secondary-color: #FFD700;
    --accent-color: #4A2C2A;
    --background-light: #FFF9F2;
    --background-dark: #4A2C2A;
    --text-primary: #4A2C2A;
    --text-secondary: #7D4D49;
    --border-color: #EAE0D5;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Pacifico', cursive;
    --font-tertiary: 'Poetsen One', sans-serif;
    --font-dancing: 'Dancing Script', cursive;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-tertiary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--spacing-md) 0;
}

p {
    margin: 0 0 var(--spacing-md) 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--secondary-color);
}

/* Utility Classes */
.text-brand-red {
    color: var(--primary-color);
}

.bg-brand-red {
    background-color: var(--primary-color);
}

.text-brand-secondary {
    color: var(--secondary-color);
}

.bg-brand-secondary {
    background-color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background-color: #D32F2F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    border: 2px solid var(--secondary-color);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--radius-lg);
}

/* Card Components */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: var(--spacing-lg);
}

.card-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    background-color: var(--background-light);
}

/* Form Components */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    transition: var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .slide {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1rem !important;
    }

    .slide-image-container,
    .slide-content-container {
        width: 100% !important;
        height: auto !important;
    }

    .text-content h1 {
        font-size: 2.5rem !important;
    }

    .slider-image {
        width: 300px !important;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 540px;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Header responsive */
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        height: 50px !important;
    }

    /* Slider responsive */
    .slider {
        height: 60vh !important;
    }

    .text-content h1 {
        font-size: 2rem !important;
    }

    .text-content p {
        font-size: 1rem !important;
        margin: 1rem 0 !important;
    }

    .text-content a {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    .slider-image {
        width: 200px !important;
    }

    /* Scrolling banner */
    .scrolling-banner {
        font-size: 1rem !important;
        padding: 0.5rem 0 !important;
    }

    /* Footer */
    footer .row {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .text-content h1 {
        font-size: 1.5rem !important;
    }

    .scrolling-text span {
        font-size: 0.8rem !important;
    }
}

/* Bootstrap Utility Extensions */
.text-pink {
    color: #ec4899 !important;
}

.bg-pink {
    background-color: #ec4899 !important;
}

.border-pink {
    border-color: #ec4899 !important;
}

.btn-outline-pink {
    border-color: #ec4899;
    color: #ec4899;
}

.btn-outline-pink:hover {
    background-color: #ec4899;
    color: white;
}

/* Bootstrap form focus states */
.form-control:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.25);
}

/* Hover effects for images */
.col-md-6 img:hover {
    transform: scale(1.05);
}

.timeline-content:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.timeline-content:hover img {
    transform: scale(1.1);
}

/* Swiper pagination customization */
.swiper-pagination-bullet-active {
    background-color: #ec4899 !important;
}

/* Section title styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.highlight {
    color: #0da345;
}

/* Slider backgrounds */
.slide-bg-1 {
    background: url('../images/bg/back1.png'), linear-gradient(135deg, #ffdee9, #b5fffc);
    background-size: cover;
    background-position: center;
}

.slide-bg-2 {
    background: url('../images/bg/back1.png'), linear-gradient(135deg, #fceabb, #f8b500);
    background-size: cover;
    background-position: center;
}

.slide-bg-3 {
    background: url('../images/bg/back1.png'), linear-gradient(135deg, #c3f0ca, #a0e7e5);
    background-size: cover;
    background-position: center;
}

/* About section gradient */
.about-gradient-bg {
    background: linear-gradient(145deg, #12ab8f 0%, #f58b27 50%, #ed1790 100%);
    max-width: 1140px;
}

/* Text colors */
.text-brown-custom {
    color: #302d2a;
}

.text-shadow-white {
    text-shadow: 2px 2px 6px rgb(255, 255, 255);
}

.text-shadow-grey {
    text-shadow: 2px 2px 6px rgba(184, 182, 182, 1);
}

.text-shadow-dark {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-customer-title {
    color: #02276b;
}

/* Section divider */
.section-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: #28a745;
    margin: 0 auto;
}

/* Image transitions */
.img-hover-scale {
    transition: transform 0.3s;
}

.img-hover-scale:hover {
    transform: scale(1.05);
}

/* OG Cards backgrounds */
.og-card-pink {
    background-color: #f9a3b0;
}

.og-card-brown {
    background-color: #4e2d19;
}

.og-card-tan {
    background-color: #c78952;
}

.og-card-green {
    background-color: #3ea056;
}

/* OG Card images */
.og-card-img-main {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
}

.og-card-img-small {
    bottom: 1.5rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
}

/* Testimonial avatar */
.testimonial-avatar {
    width: 5rem;
    height: 5rem;
}

.testimonial-card {
    transition: all 0.5s;
}

/* Swiper container */
.swiper-container-custom {
    max-width: 56rem;
}

/* Timeline container */
.timeline-container {
    max-width: 75rem;
}

/* Timeline item images */
.timeline-item-img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    transition: transform 0.3s;
}

.timeline-content-custom {
    transition: all 0.5s ease;
}

/* Contact form tagline */
.contact-tagline {
    color: #ec4899;
}

/* Submit button */
.btn-submit-pink {
    background-color: #ec4899;
    transition: all 0.3s ease;
}

.btn-submit-pink:hover {
    background-color: #db2777;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

/* Blink animation */
.blink {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {

    0%,
    100% {
        opacity: 1;

    }

    50% {
        opacity: 0.3;

    }
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 10000;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #25D366, #20B954);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-floating {
        left: 15px;
        bottom: 20px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* GSAP Animation Classes */
.gsap-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.gsap-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gsap-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.gsap-fade-in.revealed {
    opacity: 1;
}

.gsap-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.gsap-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.gsap-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.gsap-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.gsap-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.gsap-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for multiple elements */
.gsap-stagger {
    opacity: 0;
    transform: translateY(30px);
}

.gsap-stagger.revealed {
    animation: staggerReveal 0.8s ease forwards;
}

@keyframes staggerReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.font-pacifico {
    font-family: 'Pacifico', cursive;
}

.font-dancing {
    /* font-family: "Noto Serif", serif; */
    font-family: "Dancing Script", cursive;

}

.font-poetsen {
    font-family: "Poetsen One", sans-serif;
}


.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

header {
    background: linear-gradient(90deg, #EAE0D5, #ff9a9e, #a8edea, #d299c2, #EAE0D5);
    background-size: 400% 400%;
    animation: hrColorShift 10s infinite linear;
    position: relative;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg/overlay-bottom.png') no-repeat bottom center;
    background-size: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

header .container-fluid {
    position: relative;
    z-index: 1;
}

.logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation Wrapper */
.header-nav-wrapper {
    background: linear-gradient(90deg, #EAE0D5, #ff9a9e, #a8edea, #d299c2, #EAE0D5);
    background-size: 400% 400%;
    animation: hrColorShift 10s infinite linear;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Desktop Navigation Container */
.nav-custom {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation Links */
.nav-link-custom {
    position: relative;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight: 500;
    padding: 0.5rem;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #02276b;
    transition: width 0.3s ease;
}

.nav-link-custom:hover {
    color: #02276b;
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Mobile Menu Background */
.mobile-menu-bg {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Hamburger Button */
.btn-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.btn-hamburger:hover {
    opacity: 0.7;
}

/* Z-index utility */
.z-custom {
    z-index: 1000;
}

/* Sticky relative for medium screens and up */
@media (min-width: 768px) {
    .sticky-md-relative {
        position: relative !important;
    }
}

/* Dropdown styling */
.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 150px;
}

.dropdown-item {
    color: #333;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(236, 72, 153, 0.1);
    color: #02276b;
    transform: translateX(5px);
}

.dropdown-toggle::after {
    margin-left: 0.3rem;
    display: none;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:hover::after {
    border-top-color: #02276b;
}

/* Mobile dropdown styling */
@media (max-width: 767px) {
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin-top: 0.5rem;
        width: auto;
    }
}


.bg {
    background: url('../images/bg/back1.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.custom-bg {
    position: relative;
    background: url('../images/bg/pink.jpg') no-repeat center center;
    background-size: cover;
    background-position: bottom;
    overflow: hidden;
}



.custom-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('../images/bg/overlay-bottom.png') no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}



.text-brand-red {
    color: #E53935;
}

.bg-brand-red {
    background-color: #E53935;
}

.header-line {
    border-bottom: 2px solid #EAE0D5;
}

.footer-line {
    border-top: 2px solid #EAE0D5;
}

.multi-hr {
    margin: 0;
    padding: 0;
    border: 0;
    height: 3px;
    background: linear-gradient(90deg, #EAE0D5, #ff9a9e, #a8edea, #d299c2, #EAE0D5);
    background-size: 400% 400%;
    animation: hrColorShift 10s infinite linear;
}

@keyframes hrColorShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .multi-hr {
        display: none;
    }
}

.scrolling-banner {
    background-color: #E53935;
    color: #FFF9F2;
    /* transform: rotate(-2deg); */
    /* margin-top: -20px; */
    /* margin-bottom: 20px; */
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.flavor-card,
.scoop-card {
    visibility: hidden;
    /* Hide for GSAP */
}


.slider {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    /* z-index: -1; */

}

@media (max-width: 768px) {
    .slider {
        height: 550px;
    }
}


.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 5%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s ease;
}


.slide.active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

.text-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #e91e63;
    font-weight: 800;
}

.text-content p {
    color: #333;
    margin: 20px 0;
    font-size: 1.1rem;
    max-width: 400px;
}

.text-content a {
    display: inline-block;
    padding: 12px 30px;
    background: #e91e63;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.text-content a:hover {
    background: #c2185b;
}


.slider-image {
    width: 400px;
    max-width: 100%;
    object-fit: cover;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));
    /* border-radius: 20px; */
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e91e63;
    transform: scale(1.3);
    border-color: #e91e63;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .offer-badge {
        font-size: 0.9rem;
        padding: 8px 15px;
        top: 10px;
        right: 10px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .offer-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 768px) {

    .slide {
        flex-direction: column;
        text-align: center;
    }

    .text-content h1 {
        font-size: 2.2rem;
    }

    .text-content p {
        margin: 15px auto;
    }

    .image-container img {
        width: 250px;
    }
}


/* Section Styling */
.delivery-section {
    background: linear-gradient(135deg, #ff9a9e, #fecfef, #a8edea, #d299c2);
    text-align: center;
    padding: 60px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
}

.delivery-section form {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ff9a9e;
}

.delivery-section form input,
.delivery-section form textarea {
    border-radius: 10px;
    border: 2px solid #fecfef;
    background: #fff;
    transition: all 0.3s ease;
}

.delivery-section form input:focus,
.delivery-section form textarea:focus {
    border-color: #ff9a9e;
    box-shadow: 0 0 10px rgba(255, 154, 158, 0.5);
}

.delivery-section form button {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    border-radius: 10px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.delivery-section form button:hover {
    background: linear-gradient(135deg, #fecfef, #a8edea);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Heading */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.highlight {
    color: #0da345;
}

.underline {
    width: 50px;
    height: 3px;
    background-color: #0da345;
    margin: 10px auto 40px;
    border-radius: 10px;
}

/* Partner logos */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner img {
    width: 200px;
    max-width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    transition: transform 0.3s ease;
}

.partner img:hover {
    transform: translateY(-5px);
}

/* Floating Social Bar */
.social-bar {
    position: fixed;
    top: 40%;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.social-bar a {
    color: #fff;
    padding: 10px 12px;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.facebook {
    background: #1877f2;
}

.instagram {
    background: #e4405f;
}

.youtube {
    background: #ff0000;
}

.store {
    background: #34c759;
}

.social-bar a:hover {
    transform: translateX(-5px);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #514c4c;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 15px;
    }

    .timeline-item.right {
        left: 0%;
    }
}

/* Brand Story Page Styles */
.brand-story-card {
    background: rgba(255, 255, 255, 0.95);
}

/* Contact Button Styles */
.btn-submit-pink {
    background: linear-gradient(45deg, #ec4899, #f97316);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-submit-pink:hover {
    background: linear-gradient(45deg, #db2777, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* Contact Pages Styles */
.contact-hero-bg {
    background: url('../images/bg/color.png') no-repeat center center;
    background-size: cover;
}

.social-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.contact-form .form-label {
    color: var(--text-primary);
}
