/* ===================================
   Custom Styles for Vinu Visthara
   =================================== */

:root {
    --primary-color: #c9a961;
    --secondary-color: #8b7355;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gold-color: #d4af37;
    --accent-color: #b8945f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 0;
    position: relative;
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body.loaded {
    padding-top: 76px;
}

section {
    position: relative;
    overflow: visible;
    scroll-margin-top: 120px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* ===================================
   Logo Loader Animation
   =================================== */
.logo-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: visible;
    touch-action: none;
}

.logo-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    touch-action: auto;
}

/* ===================================
   Blockchain Network Particles
   =================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}


















.logo-final {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logoAppear 1s ease 0.5s forwards;
    z-index: 1;
}

.logo-image {
    width: 150px;
    height: auto;
    animation: logoPulse 0.5s ease-in-out 2;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loader-text {
    position: relative;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    z-index: 1;
}

.loader-text-char {
    display: inline-block;
    opacity: 0;
    transform-origin: center bottom;
}

.loader-text-char:nth-child(1) { 
    animation: charFlyIn 0.8s ease-out 1.5s forwards;
}
.loader-text-char:nth-child(2) { 
    animation: charFlyIn 0.8s ease-out 1.6s forwards;
}
.loader-text-char:nth-child(3) { 
    animation: charFlyIn 0.8s ease-out 1.7s forwards;
}
.loader-text-char:nth-child(4) { 
    animation: charFlyIn 0.8s ease-out 1.8s forwards;
}
.loader-text-char:nth-child(5) { 
    animation: charFlyIn 0.8s ease-out 1.9s forwards;
}
.loader-text-char:nth-child(6) { 
    animation: charFlyIn 0.8s ease-out 2.0s forwards;
}
.loader-text-char:nth-child(7) { 
    animation: charFlyIn 0.8s ease-out 2.1s forwards;
}
.loader-text-char:nth-child(8) { 
    animation: charFlyIn 0.8s ease-out 2.2s forwards;
}
.loader-text-char:nth-child(9) { 
    animation: charFlyIn 0.8s ease-out 2.3s forwards;
}
.loader-text-char:nth-child(10) { 
    animation: charFlyIn 0.8s ease-out 2.4s forwards;
}
.loader-text-char:nth-child(11) { 
    animation: charFlyIn 0.8s ease-out 2.5s forwards;
}
.loader-text-char:nth-child(12) { 
    animation: charFlyIn 0.8s ease-out 2.6s forwards;
}
.loader-text-char:nth-child(13) { 
    animation: charFlyIn 0.8s ease-out 2.7s forwards;
}

@keyframes charFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes charFlyIn {
    0% {
        opacity: 0;
        transform: translateY(100px) translateX(-50px) rotate(-15deg) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) translateX(5px) rotate(2deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* ===================================
   Navigation - Logo & Branding
   =================================== */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    display: block;
    flex-shrink: 0;
    margin-right: 0;
    transition: transform 0.3s ease;
    background: transparent;
    overflow: hidden;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.brand-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    opacity: 0.85;
    margin: 7px;
    padding: 0;
    line-height: 1.2;
    font-style: italic;
}

.navbar-brand:hover .brand-name {
    color: var(--secondary-color);
}

.navbar-brand:hover .brand-tagline {
    opacity: 1;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 468px;
    height: 468px;
    max-height: 468px;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 50%, #faf8f3 100%);
}

/* Hero Carousel Slider - Exact Laravel implementation */
#myCarousel {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 468px;
    max-height: 468px;
    z-index: 1;
    overflow: hidden;
    display: block;
}

#myCarousel .carousel-inner {
    height: 468px;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

#myCarousel .carousel-item {
    height: 468px;
    width: 100%;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

#myCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Bootstrap carousel-fade requires absolute positioning */
#myCarousel.carousel-fade .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#myCarousel.carousel-fade .carousel-item.active {
    position: relative;
    opacity: 1;
}

#myCarousel .first-slide {
    width: 100%;
    height: 468px;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    padding: 0;
}

/* Responsive heights - Exact Laravel implementation */
@media (min-width: 1000px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 370px;
        max-height: 370px;
        min-height: 370px;
    }
    
    #myCarousel .first-slide {
        height: 370px;
    }
}

@media (min-width: 1100px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 398px;
        max-height: 398px;
        min-height: 398px;
    }
    
    #myCarousel .first-slide {
        height: 398px;
    }
}

@media (min-width: 1190px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 426px;
        max-height: 426px;
        min-height: 426px;
    }
    
    #myCarousel .first-slide {
        height: 426px;
    }
}

@media (min-width: 1260px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 468px;
        max-height: 468px;
        min-height: 468px;
    }
    
    #myCarousel .first-slide {
        height: 468px;
    }
}

@media (min-width: 1390px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 492px;
        max-height: 492px;
        min-height: 492px;
    }
    
    #myCarousel .first-slide {
        height: 492px;
    }
}

@media (min-width: 1500px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 522px;
        max-height: 522px;
        min-height: 522px;
    }
    
    #myCarousel .first-slide {
        height: 522px;
    }
}

@media (min-width: 1560px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 542px;
        max-height: 542px;
        min-height: 542px;
    }
    
    #myCarousel .first-slide {
        height: 542px;
    }
}

@media (min-width: 1600px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 558px;
        max-height: 558px;
        min-height: 558px;
    }
    
    #myCarousel .first-slide {
        height: 558px;
    }
}

@media (min-width: 1700px) {
    .hero-section,
    #myCarousel,
    #myCarousel .carousel-inner,
    #myCarousel .carousel-item {
        height: 618px;
        max-height: 618px;
        min-height: 618px;
    }
    
    #myCarousel .first-slide {
        height: 618px;
    }
}

#myCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#myCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

.saree-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    border: 2px solid transparent;
}

.saree-image-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.saree-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.saree-image-card:hover::before {
    opacity: 1;
}

.saree-image-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.saree-image-card:hover::after {
    width: 200%;
    height: 200%;
}

.saree-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    will-change: transform;
    filter: brightness(1) saturate(1);
}

.saree-image-card:hover img {
    transform: scale(1.12) translateY(-2px);
    filter: brightness(1.05) saturate(1.1);
}

.saree-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.saree-image-card:hover .saree-overlay {
    opacity: 1;
}

.hero-saree-gallery .col-lg-3,
.hero-saree-gallery .col-md-4,
.hero-saree-gallery .col-6 {
    height: 35vh;
    padding: 3px;
}

@media (min-width: 768px) {
    .hero-saree-gallery .col-md-4 {
        height: 35vh;
    }
}

@media (min-width: 992px) {
    .hero-saree-gallery .col-lg-3 {
        height: 35vh;
    }
}

@keyframes zoomIn {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(139, 115, 85, 0.05));
    z-index: 1;
}

.hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    will-change: transform, opacity;
}

.hero-title {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
}

.animate-text-reveal {
    animation: textReveal 1s ease forwards;
    opacity: 0;
}

.animate-text-reveal-delay {
    animation: textReveal 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-text-reveal-delay-2 {
    animation: textReveal 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.pulse-btn:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 150px;
    height: 150px;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    width: 80px;
    height: 80px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) translateX(-20px) rotate(240deg);
    }
}

/* ===================================
   Section Titles
   =================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: expandWidth 1s ease forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 3rem 0;
    padding-top: 2rem;
    margin-top: 0;
    background-color: #fff;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(139, 115, 85, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* ===================================
   Circular Logo Wrapper
   =================================== */
.logo-circular-wrapper {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: visible;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-circular-wrapper::before {
    content: '';
    position: absolute;
    width: 356px;
    height: 356px;
    border-radius: 50%;
    border: 3px solid rgba(212, 175, 55, 0.2);
    top: 22px;
    left: 22px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.logo-circular-wrapper::after {
    content: '';
    position: absolute;
    width: 364px;
    height: 364px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.15);
    top: 18px;
    left: 18px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.logo-circular {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: contain;
    padding: 0;
    background: transparent;
    border: 8px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: logoPulse 0.8s ease-in-out infinite;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-circular-wrapper:hover .logo-circular {
    transform: scale(1.05);
    animation: logoPulse 0.6s ease-in-out infinite;
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 30px rgba(212, 175, 55, 0.15);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1), 0 0 0 0 rgba(212, 175, 55, 0.2);
        border-color: rgba(212, 175, 55, 0.45);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 30px rgba(212, 175, 55, 0.15), 0 0 0 20px rgba(212, 175, 55, 0);
        border-color: rgba(212, 175, 55, 0.55);
    }
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments for circular logo */
@media (max-width: 768px) {
    .logo-circular-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .logo-circular-wrapper::before {
        width: 266px;
        height: 266px;
        top: 17px;
        left: 17px;
    }
    
    .logo-circular-wrapper::after {
        width: 274px;
        height: 274px;
        top: 13px;
        left: 13px;
    }
    
    .logo-circular {
        width: 260px;
        height: 260px;
    }
}

.section-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.age-group-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.age-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.age-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 3px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: iconPulse 2s ease-in-out infinite;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.age-icon::after {
    display: none;
}

.age-icon-beginners {
    background-image: url('images/Teens - 20\'s.png');
    background-size: cover;
    background-position: center;
    height: 115px;
}

.age-icon-beginners::after {
    display: none; /* Remove gradient overlay for this icon since it's a complete image */
}

.age-icon-curators {
    background-image: url('images/30-40\'s.png');
    background-size: cover;
    background-position: center;
}

.age-icon-curators::after {
    display: none; /* Remove gradient overlay for this icon since it's a complete image */
}

.age-icon-heritage {
    background-image: url('images/50+.png');
    background-size: cover;
    background-position: center;
}

.age-icon-heritage::after {
    display: none; /* Remove gradient overlay for this icon since it's a complete image */
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.vision-box {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vision-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vision-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    padding: 4rem 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.2);
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 5rem 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.2) rotate(2deg);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.8), rgba(139, 115, 85, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-details:hover {
    transform: scale(1.1);
}

.product-info {
    background: white;
    padding: 1.5rem;
}

.product-info h5 {
    color: var(--dark-color);
    font-weight: 600;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: #f8f9fa;
    padding: 1.5rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
    transform: translateY(-2px);
}

.contact-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    padding: 3rem 0 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.footer-section h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: white !important;
}

.footer-section a {
    color: white !important;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.2);
    color: var(--primary-color) !important;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    border-color: var(--primary-color);
    color: white;
}

/* ===================================
   Modal Styles
   =================================== */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 2px solid var(--light-color);
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-body img {
    border-radius: 10px;
}

/* ===================================
   Smooth Scroll
   =================================== */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
}

/* Smooth scroll with momentum */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===================================
   Loading Animation
   =================================== */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Success/Error Messages
   =================================== */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    body.loaded {
        padding-top: 56px;
    }
    
    .navbar-logo {
        width: 55px;
        height: 55px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .navbar-brand {
        gap: 8px;
    }
    
    .hero-section {
        min-height: 350px;
        height: 350px;
        max-height: 350px;
        display: block;
        overflow: hidden;
    }
    
    #myCarousel {
        position: relative;
        display: block;
        height: 350px;
        max-height: 350px;
        overflow: hidden;
        z-index: 1;
        width: 100%;
    }
    
    #myCarousel .carousel-inner {
        height: 350px;
        width: 100%;
        overflow: hidden;
        display: block;
    }
    
    #myCarousel .carousel-item {
        height: 350px;
        width: 100%;
        overflow: hidden;
        display: block;
    }
    
    #myCarousel .first-slide {
        height: 350px;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.5), rgba(139, 115, 85, 0.5));
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    .about-section {
        padding: 2rem 0;
        padding-top: 1rem;
        margin-top: 0;
    }
    
    .products-section,
    .faq-section,
    .contact-section {
        padding: 2.5rem 0;
        padding-top: 2rem;
    }
    
    
    
    .logo-image {
        width: 120px;
    }
    
    .loader-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 350px;
        height: 350px;
        max-height: 350px;
        padding: 0;
        margin: 0;
    }
    
    .hero-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    #myCarousel {
        height: 350px;
        max-height: 350px;
        min-height: 350px;
        overflow: hidden;
    }
    
    #myCarousel .carousel-inner {
        height: 350px;
        max-height: 350px;
        min-height: 350px;
        overflow: hidden;
    }
    
    #myCarousel .carousel-item {
        height: 350px;
        max-height: 350px;
        min-height: 350px;
        overflow: hidden;
    }
    
    #myCarousel .first-slide {
        height: 350px;
        width: 100%;
        object-fit: cover;
        object-position: center center;
    }
    
    .about-section {
        padding-top: 2rem !important;
        margin-top: 0 !important;
    }
    
    .hero-section .row.min-vh-100 {
        min-height: auto !important;
        padding: 1rem 0 !important;
        margin: 0;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.5), rgba(139, 115, 85, 0.5));
    }
    
    .hero-content {
        padding: 0.5rem 0 !important;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem !important;
        line-height: 1.3;
    }
    
    .hero-buttons {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .scroll-indicator {
        margin-top: 0.5rem;
    }
    
    .about-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
        margin-top: 0 !important;
    }
    
    section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .age-group-card {
        padding: 1.5rem;
    }
    
    .vision-box {
        padding: 2rem 1.5rem !important;
    }
    
    .floating-element {
        display: none;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .logo-loader,
    .navbar,
    .scroll-indicator,
    .floating-elements {
        display: none;
    }
}
