/* ===== ROOT VARIABLES ===== */
:root {
    --primary-burgundy: #8b1538;
    --secondary-gold: #d4af37;
    --accent-bronze: #cd7f32;
    --deep-maroon: #722f37;
    --warm-cream: #f5f1e8;
    --charcoal: #2c2c2c;
    --stone-gray: #6b6b6b;
    --sunset-orange: #e07a5f;
    --soft-white: #fdfcf8;
    --dark-overlay: rgba(44, 44, 44, 0.85);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--warm-cream);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--warm-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-burgundy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-maroon);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-gold), var(--accent-bronze));
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: var(--stone-gray);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    color: white;
    padding: 15px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .btn-light {
    background: var(--secondary-gold);
    border: none;
    color: var(--charcoal);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-banner .btn-light:hover {
    background: var(--accent-bronze);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.custom-navbar {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--deep-maroon) 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-navbar.scrolled {
    background: rgba(139, 21, 56, 0.95);
    padding: 0.5rem 0;
}

.navbar-brand .brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-left: 0.5rem;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary-gold) !important;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: linear-gradient(45deg, var(--dark-overlay), var(--dark-overlay)), 
                url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                var(--primary-burgundy) 0%, 
                transparent 50%, 
                var(--deep-maroon) 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}


html{
    overflow-x: hidden;
}


.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); }
    to { text-shadow: 3px 3px 6px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.2); }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}
.logo-container img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ===== ARCHIVE SECTION ===== */
.archive-section {
    padding: 100px 0;
    background: var(--soft-white);
}

.archive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.featured-match {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-match:hover {
    transform: translateY(-10px);
}

.match-video {
    position: relative;
    width: 100%;
    height: 500px;
}

.match-video img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.match-info {
    padding: 2rem;
}

.match-info h3 {
    color: var(--primary-burgundy);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.match-date {
    color: var(--secondary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.match-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.match-quote {
    background: linear-gradient(135deg, var(--warm-cream), var(--soft-white));
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-gold);
    border-radius: 10px;
    font-style: italic;
    position: relative;
}

.match-quote cite {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-burgundy);
}

.match-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.match-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.match-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.match-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.match-card-content {
    padding: 1.5rem;
}

.match-card h4 {
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.match-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.match-stats span {
    background: var(--warm-cream);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    color: white;
}

.gallery-section .section-title {
    color: white;
}

.gallery-section .section-title::after {
    background: linear-gradient(90deg, var(--secondary-gold), white);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item.medium {
    min-height: 250px;
}

.gallery-item.small {
    min-height: 180px;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--secondary-gold);
    margin-bottom: 0.5rem;
}

/* ===== HONOR SECTION ===== */
.honor-section {
    padding: 100px 0;
    background: var(--warm-cream);
}

.honor-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.honor-form h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-control {
    border: 2px solid var(--warm-cream);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    background: var(--soft-white);
}

.form-control:focus {
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--deep-maroon), var(--primary-burgundy));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
}

.honor-messages {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.honor-messages h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.messages-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.message-card {
    background: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-gold);
    transition: transform 0.3s ease;
}

.message-card:hover {
    transform: translateX(5px);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.message-header strong {
    color: var(--primary-burgundy);
}

.country {
    font-size: 0.9rem;
    color: var(--stone-gray);
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: 100px 0;
    background: var(--soft-white);
}

.leadership-video {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    font-size: 0;
}

.leadership-video iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.leadership-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-gold);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.principle-card h4 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.premium-offer {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-bronze));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.premium-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.offer-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.offer-price {
    margin: 1.5rem 0;
}

.offer-price .price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.offer-price .duration {
    font-size: 1rem;
    opacity: 0.8;
}

.btn-premium {
    background: white;
    color: var(--primary-burgundy);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-premium:hover {
    background: var(--soft-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===== SILENCE SECTION ===== */
.silence-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-maroon) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.silence-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/tbg.webp') center/cover;
    opacity: 0.1;
}
.footer-logo img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.silence-content {
    position: relative;
    z-index: 2;
}

.silence-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--secondary-gold);
}

.silence-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    font-style: italic;
}

.silence-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.silence-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.silence-image:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.silence-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.silence-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.silence-text p {
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.meditation-timer {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 400px;
    margin: 3rem auto 0;
}

.meditation-timer h4 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.btn-silence {
    background: transparent;
    border: 2px solid var(--secondary-gold);
    color: var(--secondary-gold);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-silence:hover {
    background: var(--secondary-gold);
    color: var(--charcoal);
}

.timer-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-gold);
    text-align: center;
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
}

/* ===== PROMISE SECTION ===== */
.promise-section {
    padding: 100px 0;
    background: var(--warm-cream);
}

.promise-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promise-form h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.promise-checkboxes {
    background: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 0.5rem;
}

.form-check {
    margin-bottom: 1rem;
}

.form-check-input:checked {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.btn-promise {
    background: linear-gradient(135deg, var(--secondary-gold), var(--accent-bronze));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-promise:hover {
    background: linear-gradient(135deg, var(--accent-bronze), var(--secondary-gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.promise-wall {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.promise-wall h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.promises-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 1rem;
}

.promise-card {
    background: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-bronze);
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateX(5px);
}

.promise-card h5 {
    color: var(--primary-burgundy);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.promise-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.promise-badges .badge {
    background: var(--secondary-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.certificate-offer {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    text-align: center;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.offer-header i {
    font-size: 2rem;
    color: var(--secondary-gold);
}

.certificate-price {
    margin: 1rem 0;
}

.certificate-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: 'Playfair Display', serif;
}

.certificate-price .features {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.btn-certificate {
    background: var(--secondary-gold);
    color: var(--charcoal);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-certificate:hover {
    background: var(--accent-bronze);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ===== FOOTER ===== */
.footer-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-burgundy) 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand h4 {
    color: var(--secondary-gold);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.footer-links h5 {
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-gold);
}

.footer-social h5 {
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.newsletter h6 {
    color: var(--secondary-gold);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background: var(--secondary-gold);
    color: var(--charcoal);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-bronze);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* ===== MODALS ===== */
.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--deep-maroon));
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

.premium-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.premium-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--warm-cream);
}

.premium-price-summary,
.certificate-price-summary {
    background: var(--warm-cream);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.price-line.total {
    border-top: 2px solid var(--primary-burgundy);
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.certificate-preview img {
    border: 3px solid var(--secondary-gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        min-height: 250px;
    }
    
    .leadership-principles {
        grid-template-columns: 1fr;
    }
    
    .silence-gallery {
        grid-template-columns: 1fr;
    }
    
    .silence-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        background: var(--primary-burgundy);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .premium-offer,
    .certificate-offer {
        padding: 2rem 1.5rem;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
    }
    
    .offer-price .price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .promise-form,
    .honor-form,
    .promise-wall,
    .honor-messages {
        padding: 1.5rem;
    }
    
    .silence-title {
        font-size: 2rem;
    }
    
    .meditation-timer {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: var(--secondary-gold);
}

.bg-burgundy {
    background: var(--primary-burgundy);
}

.border-gold {
    border-color: var(--secondary-gold);
}

.shadow-custom {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
    border-radius: 20px;
}

.transition-custom {
    transition: all 0.3s ease;
}



.text-wrapper h2, .text-wrapper h3{
    margin-top: 20px;
    margin-bottom: 10px;
}

.text-wrapper h1{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-wrapper h2{
    font-size: 1.5rem;
}

.text-wrapper{
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}
.text-wrapper ul{
    list-style: initial!important;
}

.text-wrapper p{
    margin-bottom: 10px;
}