/* ================================
   GLOBAL STYLES & VARIABLES
   ================================ */
:root {
    --primary-teal: #2C6B7F;
    --primary-terracotta: #E07A5F;
    --accent-cream: #FAF8F3;
    --navy-text: #1A3A52;
    --hope-yellow: #F4D35E;
    --urgent-coral: #F95738;
    --success-green: #81B29A;
    --primary-dark: #000000;
    
    --font-header: 'Playfair Display', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-handwritten: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--accent-cream);
    color: var(--navy-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 54px; }
h2 { font-size: 38px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; font-family: var(--font-body); }

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ================================
   ANNOUNCEMENT BAR
   ================================ */
.announcement-bar {
    background: var(--primary-dark);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.announcement-bar i {
    margin-right: 8px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ================================
   NAVIGATION BAR
   ================================ */

.custom-navbar{
background: linear-gradient(135deg, #03190e 0%, var(--primary-terracotta) 100%);    
}

.navbar-nav .nav-item .nav-link{
color: #fff !important;    
}

.cart-custom{
background: #000;
width: 45px;
color: #fff;
border-radius: 50px;
padding-left: 13px !important;    
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}


/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 55%)), url(../images/hero-banner.jpg) center / cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-transparency {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--hope-yellow);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 15px 10px 15px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-subheading);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(224, 122, 95, 0.5);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    font-size: 12px;
    font-weight: 700;
    /*padding: 16px 40px;*/
    border-radius: 50px;
    border: 3px solid white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-subheading);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--primary-teal);
    transform: translateY(-3px);
}

.btn-primary-custom.urgent {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 8px 24px rgba(224, 122, 95, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(249, 87, 56, 0.7); }
}

.cta-assurance {
    font-size: 14px;
    margin-top: 12px;
    opacity: 0.9;
    font-weight: 600;
}

.cta-assurance i {
    margin: 0 8px;
}

/* ================================
   TRUST INDICATORS (HERO)
   ================================ */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 28px;
    color: var(--hope-yellow);
}

.trust-item-content h4 {
    font-size: 26px;
    font-family: var(--font-subheading);
    margin: 0;
    font-weight: 800;
}

.trust-item-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ================================
   MEET OUR ARTISTS SECTION
   ================================ */
.meet-artists {
    background: white;
    padding: 80px 0 0px 0px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-size: 48px;
}

.section-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.artist-card {
    background: var(--accent-cream);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 107, 127, 0.2);
}

.artist-photo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.artist-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-terracotta);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.artist-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--success-green);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.artist-card h3 {
    font-size: 22px;
    color: var(--navy-text);
    margin-bottom: 8px;
    line-height: 1.25;
    word-break: break-word;
}

@media (max-width: 1100px) {
    .artist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.artist-age {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}

.artist-dream {
    font-family: var(--font-handwritten);
    font-size: 16px;
    color: var(--primary-teal);
    font-style: italic;
    font-weight: bold;
    line-height: 1.45;
    margin-bottom: 16px;
    min-height: 46px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 2px solid #ddd;
    margin-top: auto;
    margin-bottom: 16px;
}

.stat-item-small {
    text-align: center;
}

.stat-item-small h4 {
    font-size: 18px;
    color: var(--primary-terracotta);
    margin-bottom: 5px;
    font-family: var(--font-subheading);
}

.stat-item-small p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.btn-view-art {
    background: var(--primary-teal);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.btn-view-art:hover {
    background: var(--navy-text);
    color: white;
    transform: scale(1.05);
}

.artist-card .btn-primary-custom {
    padding: 12px 18px;
    font-size: 11px;
    line-height: 1.35;
    border-radius: 18px;
    width: 100%;
}

.cust-btn-grp a{
    font-size: 12px;
    border-radius: 0px;
    border: none;
}

.cust-btn-grp .addtocart{
    margin-right: 5px;
    background: #000;
    color: white;
    padding: 10px 7px 0px 7px;
}

.cust-btn-grp .buynow{
    margin-right: 5px;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: white;
    border:none;
    background:linear-gradient(135deg,var(--primary-terracotta),var(--urgent-coral));
    cursor:pointer;
    padding:10px 20px;
    font-family:var(--font-subheading);
    font-weight:700;
    border-radius: 0px;
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size: 12px;
}

/* ================================
   FEATURED ARTWORKS SECTION
   ================================ */
.featured-artworks {
    background: var(--accent-cream);
    padding: 80px 0;
}

.artwork-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 30px;
}

.artwork-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.artwork-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.artwork-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.details-art-image{
    width: 100%;
    height: 25rem !important;
}

.artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artwork-card:hover .artwork-image {
    transform: scale(1.08);
}

.child-photo-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.artwork-card:hover .child-photo-overlay {
    transform: scale(1.15);
    border-color: var(--primary-terracotta);
}

.supporter-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 58, 82, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.supporter-badge .count {
    font-size: 16px;
    color: var(--hope-yellow);
}

.urgency-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--urgent-coral);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.artwork-content {
    padding: 25px;
}

.artwork-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 8px;
}

.artwork-artist {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.artwork-artist strong {
    color: var(--primary-teal);
}

.artwork-story {
    font-family: var(--font-handwritten);
    font-size: 17px;
    font-weight: 700;
    color: #555;
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.5;
}

.artwork-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-terracotta);
    font-family: var(--font-subheading);
}

.slots-danger {
    font-size: 15px !important;
    color: #da1717 !important;
    font-weight: bold !important;
}

.slots-info {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.progress-wrapper {
    margin-bottom: 20px;
}

.progress {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-custom {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-bar-high {
    background: linear-gradient(90deg, var(--success-green) 0%, #6fa889 100%);
}

.progress-bar-medium {
    background: linear-gradient(90deg, var(--hope-yellow) 0%, #f0c74d 100%);
}

.progress-bar-low {
    background: linear-gradient(90deg, var(--urgent-coral) 0%, #ff3d1a 100%);
}

.progress-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-weight: 600;
}

.btn-support {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-terracotta) 0%, var(--urgent-coral) 100%);
    color: white;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.4);
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-it-works {
    background: white;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4719 0%, var(--primary-terracotta) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(44, 107, 127, 0.3);
}

.step-icon {
    font-size: 50px;
    color: var(--primary-terracotta);
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 22px;
    color: var(--navy-text);
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.impact-callout {
    /*background: linear-gradient(135deg, var(--primary-teal) 0%, var(--navy-text) 100%);*/
    background-image: 
        linear-gradient(135deg, rgb(0 0 0 / 76%), rgb(0 128 128 / 76%)), url(../images/banner-wide2.jpg);
        
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.impact-callout h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.impact-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.impact-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.impact-list-item i {
    color: var(--hope-yellow);
    font-size: 24px;
}

/* ================================
   IMPACT STATS SECTION
   ================================ */
.impact-stats {
    background: var(--accent-cream);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 50px;
    color: var(--primary-terracotta);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-teal);
    font-family: var(--font-subheading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* ================================
   IMPACT STORIES SECTION
   ================================ */
.impact-stories {
    background: white;
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.story-card {
    background: var(--accent-cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-title {
    font-size: 24px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.story-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-read-more {
    color: var(--primary-terracotta);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 12px;
}

/* ================================
   TRANSPARENCY SECTION
   ================================ */
.transparency-section {
    /*background: linear-gradient(135deg, var(--primary-teal) 0%, var(--navy-text) 100%);*/
    background-image: 
linear-gradient(135deg, rgb(0 0 0 / 76%), rgb(0 128 128 / 76%)), url(../images/banner-wide.jpg);

background-size: cover;
background-position: center;
background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
}

.transparency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transparency-text h2 {
    color: white;
    margin-bottom: 25px;
}

.transparency-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.breakdown-list {
    list-style: none;
    padding: 0;
}

.breakdown-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-weight: 600;
}

.breakdown-list li i {
    position: absolute;
    left: 0;
    color: var(--hope-yellow);
    font-size: 20px;
}

.transparency-visual {
    text-align: center;
}

.percentage-circle {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.percentage-circle h3 {
    font-size: 72px;
    color: var(--primary-terracotta);
    margin: 0;
    line-height: 1;
}

.percentage-circle p {
    font-size: 18px;
    color: var(--navy-text);
    margin: 10px 0 0 0;
    font-weight: 700;
}

.btn-financial-report {
    background: white;
    color: var(--primary-teal);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-financial-report:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* ================================
   FOUNDER'S MESSAGE SECTION
   ================================ */
.founder-message {
    background: var(--accent-cream);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.founder-text h2 {
    color: var(--primary-teal);
    margin-bottom: 30px;
}

.founder-quote {
    font-family: var(--font-handwritten);
    font-size: 26px;
    color: var(--navy-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.founder-quote::before {
    content: '"';
    font-size: 80px;
    color: var(--primary-terracotta);
    position: absolute;
    left: -10px;
    top: -20px;
    font-family: Georgia, serif;
}

.founder-signature {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.founder-signature strong {
    display: block;
    font-size: 20px;
    color: var(--navy-text);
    margin-bottom: 5px;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background-image: linear-gradient(135deg, #000000a1 0%, #a02008bd 100%), url(../images/banner-wide3.jpg);

background-size: cover;
background-position: center;
background-repeat: no-repeat;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-large {
    background: white;
    color: var(--primary-teal);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    color: var(--primary-teal);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-terracotta);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-badge i {
    color: var(--success-green);
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.8;
    font-size: 14px;
}

/* ================================
   WHATSAPP FLOAT BUTTON
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 999;
    animation: float-pulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

@keyframes float-pulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================
   LIVE ACTIVITY POPUP
   ================================ */
.live-activity-popup {
    position: fixed;
    bottom: 120px;
    left: 30px;
    background: white;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 998;
    animation: slideInLeft 0.5s ease, slideOutLeft 0.5s ease 4.5s;
    max-width: 350px;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    to {
        transform: translateX(-400px);
        opacity: 0;
    }
}

.activity-flag {
    font-size: 28px;
}

.activity-text {
    flex: 1;
}

.activity-text strong {
    color: var(--primary-teal);
    font-weight: 700;
}

.activity-text em {
    color: var(--primary-terracotta);
    font-style: italic;
}

.activity-time {
    font-size: 12px;
    color: #999;
    margin-top: 3px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 992px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    
    .hero h1 { font-size: 48px; }
    
    .transparency-content,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    
    .hero h1 { font-size: 38px; }
    .hero-subtitle { font-size: 18px; }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .artist-grid,
    .artwork-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 30px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .live-activity-popup {
        bottom: 100px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        font-size: 16px;
        padding: 14px 30px;
    }
    
    .percentage-circle {
        width: 200px;
        height: 200px;
    }
    
    .percentage-circle h3 {
        font-size: 56px;
    }
}

/* ================================
   UTILITY ANIMATIONS
   ================================ */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ================================
   PAGE BREADCRUMB DESIGN START
   ================================ */

/* Counter animation (will be triggered by JavaScript) */
.counter {
    display: inline-block;
}

.page-breadcrumb {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    padding: 16px 0;
    color: #fff;
}
.page-breadcrumb a {
    color: #F4D35E;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-subheading);
    font-weight: 600;
}
.page-breadcrumb a:hover { text-decoration: underline; }
.page-breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.page-breadcrumb .current { color: #fff; font-size: 14px; }
