:root {
    --primary-red: #E63946;
    --primary-purple: #7209B7;
    --accent-gold: #FCA311;
    --dark-bg: #0A0A0A;
    --dark-card: #1A1A1A;
    --gradient-main: linear-gradient(135deg, var(--primary-red), var(--primary-purple));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), var(--primary-red));
}

* {
    font-family: 'Poppins', sans-serif;
}

.py-my {
    padding: 5rem 0;
}

body {
    background: #0F0F0F;
    color: white;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--gradient-main);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Navbar - Not Fixed */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
    margin-top: 0 !important;
}

.navbar-brand img {
    height: 55px;
    filter: drop-shadow(0 4px 8px rgba(230, 57, 70, 0.5));
}

/* Hero Section */

.hero-slide {
    height: 100vh;
    /* background: linear-gradient(135deg, var(--primary-red), var(--primary-purple)); */
    background: var(--gradient-main);
    color: white;
}

.hero-section {
    height: 100vh;
    background: var(--gradient-main);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(252, 163, 17, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.4) 0%, transparent 50%);
    animation: heroFloat 15s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    33% {
        transform: scale(1.1) rotate(2deg);
    }

    66% {
        transform: scale(1.05) rotate(-1deg);
    }
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* Product & Gallery Cards */



/* Section Title */
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* FIXED Product Card Styles */
#products {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg), rgba(26, 26, 26, 0.8));
}

#products .product-card {
    position: relative;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    /* ✅ FIXED: Prevents image overflow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

#products .product-card:hover {
    transform: translateY(-15px);
    /* box-shadow: 0 35px 70px rgba(230, 57, 70, 0.3); */
}

#products .card-img-top {
    width: 100%;
    height: 220px;
    /* ✅ FIXED: Fixed height */
    object-fit: cover;
    /* ✅ FIXED: Proper scaling */
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

#products .product-card:hover .card-img-top {
    transform: scale(1.08);
    /* Smooth zoom */
    filter: brightness(0.9) contrast(1.1);
}

#products .card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
}

#products .card-title {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem !important;
    font-size: 1.6rem !important;
}

#products .card-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem;
}

#products .badge {
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
}


/* Gallery section */
/* Gallery Section */
#gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg), rgba(26, 26, 26, 0.8));
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* Gallery Cards - PERFECTLY SIMPLE */
.gallery-card {
    position: relative;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(252, 163, 17, 0.25);
    border-color: rgba(252, 163, 17, 0.4);
}

/* Fixed Images */
.gallery-card .card-img-top {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.gallery-card:hover .card-img-top {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(1.1);
}

/* Overlay */
.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-card:hover::before {
    opacity: 0.08;
}

.gallery-card .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.gallery-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #gallery {
        padding: 3rem 1rem;
    }

    .gallery-card .card-img-top {
        height: 200px;
    }

    .gallery-card:hover {
        transform: translateY(-8px);
    }
}

/* Gallery section */


/* Responsive Fixes */
@media (max-width: 768px) {
    #products {
        padding: 3rem 1rem;
    }

    #products .card-img-top {
        height: 200px;
    }

    #products .product-card:hover {
        transform: translateY(-8px);
        /* Less lift on mobile */
    }

    #products .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Grid Spacing Fix */
#products .row {
    --bs-gutter-x: 1.5rem;
}

#products .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Hover Animation Enhancement */
#products .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

#products .product-card:hover::before {
    opacity: 0.08;
}


/* Stats Section */
.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
    background: rgba(252, 163, 17, 0.1);
}

/* Forms */
.form-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* About Timeline */
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background: var(--gradient-main);
}

.timeline-icon {
    position: absolute;
    left: 4px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    border-radius: 50%;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
    }
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite linear;
}





/* Why choose start */
#why-choose-us {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 5rem 0;
}

#why-choose-us .why-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

#why-choose-us .why-card:hover {
    transform: translateY(-12px);
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 25px 50px rgba(252, 163, 17, 0.2);
}

#why-choose-us .section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #FCA311, #E63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#why-choose-us .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #E63946, #7209B7);
    border-radius: 2px;
}

@media (max-width: 768px) {
    #why-choose-us {
        padding: 3rem 1rem;
    }

    #why-choose-us .why-card {
        margin-bottom: 1.5rem;
    }
}

/* Why choose end */


/* About css */

.inner-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 0% 0%, rgba(252, 163, 17, 0.25) 0, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(114, 9, 183, 0.4) 0, transparent 55%),
        #050509;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -10%, rgba(230, 57, 70, 0.35) 0, transparent 55%);
    opacity: 0.7;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-title {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    max-width: 640px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.82);
}

/* Section Title (reuse style) */
.section-title_about {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title_about::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* Glass / Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Timeline (origin story) – similar to i3.html */

/* Mission / Vision / Values */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    box-shadow: 0 10px 28px rgba(114, 9, 183, 0.55);
    font-size: 1.1rem;
}

/* Why Choose Campa */
.why-card {
    background: rgba(26, 26, 26, 0.96);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem 1.4rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(252, 163, 17, 0.2), rgba(114, 9, 183, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.why-card:hover::before {
    opacity: 1;
}

.why-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
    .inner-hero {
        padding-top: 96px;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* About css */


/* Privicy & Terms */

.policy-container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 3rem;
}

.policy-section {
    border-left: 4px solid var(--gradient-main);
    /* padding-left: 2rem; */
    margin-bottom: 3rem;
}

.policy-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.policy-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.policy-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
}

.policy-list {
    padding-left: 0;
    list-style: none;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}




/* Last Updated */
.last-updated {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .policy-container {
        /* margin: 1rem; */
        padding: 2rem 1.5rem;
    }

    /* .policy-section {
        padding-left: 1.5rem;
    } */
}