:root {
    /* Primary Brand Colors */
    --primary-main: #F47F28;
    /* Royal Saffron */
    --primary-dark: #D65A00;
    /* Deep Orange */
    --accent-gold: #D4AF37;
    /* Temple Gold */
    --soft-gold: #F1C40F;
    /* Light Gold */

    /* Legacy mapping for inline structures so HTML doesn't break */
    --metallic-gold: #D4AF37;
    --metallic-gold-light: #F1C40F;
    --saffron-accent: #F47F28;
    --saffron-dark: #BF360C;
    /* Sub Heading color for dark saffron legacy calls */

    /* Background Colors */
    --bg-main: #FFF8E7;
    /* Cream White */
    --bg-light: #FAF3E0;
    /* Off White */
    --bg-card: #FFFFFF;
    /* Pure White */
    --bg-footer: #3E2723;
    /* Dark Brown */

    /* Text Colors */
    --text-heading: #4E342E;
    /* Dark Brown */
    --text-subheading: #BF360C;
    /* Dark Orange */
    --text-normal: #333333;
    /* Charcoal */
    --text-muted: #666666;
    /* Gray */
    --text-footer: #FBE9E7;
    /* Light Cream */
}

html,
body {
    background-color: var(--bg-main);
    color: var(--text-normal);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Typography Base Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-headline {
    font-family: 'Cinzel', serif;
}

.hero-headline {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.subline {
    color: #f5d649;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    color: #000 !important;
    text-shadow: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-main);
    border-radius: 5px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

@media (min-width: 768px) {
    .section-title.text-md-start::after {
        left: 0;
        transform: none;
    }
}

@media (min-width: 992px) {
    .section-title.text-lg-start::after {
        left: 0;
        transform: none;
    }
}

/* Link & Hover Colors */
a {
    color: var(--primary-dark);
    /* Normal Link */
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-main);
    /* Hover Link */
}

/* Utility Class Adjustments for Light Theme */
.text-white,
.text-light {
    color: #000 !important;
}

h1.text-white,
h2.text-white,
h3.text-white,
h4.text-white,
h5.text-white,
h6.text-white,
.text-white.fw-medium {
    color: #fff !important;
}

.opacity-75,
.opacity-50 {
    opacity: 1 !important;
}

/* Base Buttons */

/* Primary Button (Mapped to btn-gold if used as primary, but we'll create dedicated rules and overwrite btn-gold as gold) */
.btn-primary-custom {
    background-color: var(--primary-main);
    color: #FFFFFF !important;
    font-weight: 600;
    border: 2px solid var(--primary-main);
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 127, 40, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: #FFFFFF !important;
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(214, 90, 0, 0.4);
}

/* Gold Button */
.btn-gold {
    background-color: #f55a00;
    color: #FFFFFF !important;
    font-weight: 600;
    border: 2px solid #f5d649;
    padding: 8px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.btn-gold:hover {
    background-color: #b71f0b;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(183, 149, 11, 0.4);
    border-color: #e7bb09;
}

/* Outline Button */
.btn-outline-gold {
    background-color: #f55a00;
    color: #fff !important;
    font-weight: 600;
    border: 2px solid #FFEB3B;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #db390b;
    color: #FFFFFF !important;
    border: 2px solid #FFEB3B;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 17, 16, 0.9) 0%, rgba(26, 17, 16, 0.4) 50%, rgba(26, 17, 16, 0.9) 100%),
        url('image/banner-bg.webp') center/cover;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(245, 90, 0, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.relative-z-index {
    position: relative;
    z-index: 1;
}

.hero-content-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-img1 {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Premium Card */
.card-premium {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    color: #000 !important;
}

.card-premium h1,
.card-premium h2,
.card-premium h3,
.card-premium h4,
.card-premium h5,
.card-premium h6,
.card-premium p,
.card-premium ul li {
    color: #000 !important;
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: #f55a00;
    box-shadow: 0 20px 45px rgba(245, 90, 0, 0.1);
}



.card-premium .icon {
    font-size: 3rem;
    color: var(--primary-main);
    margin-bottom: 25px;
    display: inline-block;
}

/* Event Details */
.event-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.event-box h5 {
    color: #000 !important;
    font-weight: 700;
}

.event-box span,
.event-box p,
.event-box div {
    color: #000 !important;
}


.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
}

/* Custom Lists */
ul.list-custom {
    list-style: none;
    padding-left: 0;
}

ul.list-custom li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-normal);
}

ul.list-custom li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-main);
    font-size: 1.2rem;
}

/* Navbar */
.navbar {
    background-color: #1a1110 !important;
    /* Rich Dark Brown/Black */
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #f55a00;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 10px 20px !important;
    background: #FFFFFF;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: -10px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.nav-link {
    color: #FFFFFF !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 3px;
    position: relative;
}

.nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-main) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-main);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-toggler i {
    color: #FFFFFF !important;
}

/* Header Responsiveness for 1280px range */
@media (min-width: 992px) and (max-width: 1400px) {
    .navbar .container {
        max-width: 98% !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-link {
        font-size: 0.8rem !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin: 0 !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand {
        padding: 5px 12px !important;
        margin-top: -5px !important;
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .btn-gold {
        padding: 10px 25px !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.8px !important;
        font-weight: 700 !important;
    }

    .ms-lg-3 {
        margin-left: 8px !important;
    }
}

/* Sections */
.section-padding {
    padding: 50px 0;
    background-color: #fff;
}

.bg-dark-alt {
    background-color: #f1d5c6 !important;
}

/* Contact Details */
.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 127, 40, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.contact-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    color: #000;
}


.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #f55a00;
}


/* Footer Section */
.footer {
    background-color: var(--bg-footer);
    border-top: 4px solid var(--primary-main);
    padding: 60px 0 20px;
    color: var(--text-footer);
}

.footer p,
.footer a,
.footer span,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .text-light,
.footer .text-white,
.footer .text-muted {
    color: var(--text-footer) !important;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-footer) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-links a:hover {
    background: var(--primary-main);
    color: #FFFFFF !important;
    transform: translateY(-3px);
}

/* Images */
.artist-img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #FFFFFF;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    border-color: var(--primary-main);
}

/* Booking Options */
.booking-option {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(78, 52, 46, 0.1);
}

.booking-option:last-child {
    border-right: none;
}

/* Borders overrides for light mode */
.border-secondary {
    border-color: rgba(78, 52, 46, 0.1) !important;
}

.badge.border-secondary {
    border-color: rgba(78, 52, 46, 0.2) !important;
}

hr.border-secondary {
    border-top-color: rgba(78, 52, 46, 0.15) !important;
}

.badge.bg-dark {
    background-color: var(--primary-main) !important;
    color: #FFFFFF !important;
}

@media (max-width: 768px) {
    .btn-mobile-site {
        background: linear-gradient(135deg, #f55a00 0%, #ff8c00 100%) !important;
        color: #fff !important;
        border: 1px solid rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        animation: pulse-gold-soft 2s infinite;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulse-gold-soft {
        0% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(245, 90, 0, 0.4);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(245, 90, 0, 0.6);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 4px 15px rgba(245, 90, 0, 0.4);
        }
    }

    .booking-option {
        border-right: none;
        border-bottom: 1px solid rgba(78, 52, 46, 0.1);
    }

    .booking-option:last-child {
        border-bottom: none;
    }

    .hero-headline {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }

    .subline {
        font-size: 1.2rem;
    }

    .btn-gold,
    .btn-primary-custom,
    .btn-outline-gold {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    .hero-content-wrapper {
        padding: 10px !important;
    }

    .hero-content-wrapper img {
        height: 400px;
        object-fit: cover;
        border-radius: 15px;
    }

    .hero-content-wrapper p.fs-6,
    .hero-content-wrapper p.fs-5 {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8rem !important;
    }
}

/* Video Section Styling - Professional & Attractive */
.podcast-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
    position: relative;
}

.podcast-title {
    color: #3e2723;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.video-card {
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 5px solid #ffffff;
    /* margin-bottom: 30px; */
}

.video-card:hover {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 40px 70px rgba(245, 90, 0, 0.25);
    border-color: #f55a00;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 112%;
    /* Adjusted to remove black bar at bottom */
    background: #000;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .podcast-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .video-card {
        margin-bottom: 20px;
        border-width: 3px;
    }
}


.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
}

/* Subtle overlay effect */
.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.card-link:hover {
    color: #f5d649;
}

/* Artist Section Adjustments for Light Background */
#artist {
    color: #333;
}

#artist .section-title {
    color: #3e2723;
}

#artist h3 {
    color: #3e2723 !important;
}

.vision-box {
    background: rgba(245, 90, 0, 0.05);
    border: 1px solid rgba(245, 90, 0, 0.2) !important;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    margin-bottom: 25px;
}

.vision-box h5 {
    color: #f55a00 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-box p {
    color: #000;
    font-style: italic;
    line-height: 1.3;
    font-weight: 600;
}

.artist-subline {
    color: #f55a00 !important;
    font-weight: 600;
}

.artist-desc {
    color: #000 !important;
    font-size: 18px;
    line-height: 28px;
}

/* Pillars Section Styles (Replicating Screenshot Design) */
.pillars-section {
    background-color: #f5d5c6 !important;
    padding: 80px 0;
}

/* Professional Experience Section Styles */
.experience-section {
    position: relative;
    background: #fafafa;
    overflow: hidden;
    padding: 50px 0;
}

.experience-section::before {
    content: 'DEVOTION';
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    font-family: 'Cinzel', serif;
}

.experience-section::after {
    content: 'CELEBRATION';
    position: absolute;
    bottom: 10%;
    right: -5%;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(245, 90, 0, 0.02);
    z-index: 0;
    font-family: 'Cinzel', serif;
}

.experience-content {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(245, 90, 0, 0.05);
    position: relative;
    z-index: 2;
}

.experience-label {
    display: inline-block;
    color: #f55a00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f55a00;
    padding-bottom: 5px;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1110;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Cinzel', serif;
}

.experience-title span {
    color: #f55a00;
    display: block;
}

.experience-p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    font-weight: 500;
    margin-bottom: 30px;
}

.experience-quote {
    background: linear-gradient(90deg, #fff9f5 0%, #ffffff 100%);
    border-left: 6px solid #f55a00;
    padding: 25px 35px;
    margin: 40px 0;
    border-radius: 4px 20px 20px 4px;
    box-shadow: 5px 10px 30px rgba(245, 90, 0, 0.03);
}

.experience-quote p {
    margin-bottom: 0;
    font-weight: 800;
    font-style: italic;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 90, 0, 0.1);
    border-color: #f55a00;
}

.feature-box i {
    font-size: 2rem;
    color: #f55a00;
    margin-bottom: 15px;
    display: block;
}

.feature-box h6 {
    font-weight: 800;
    color: #1a1110;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.feature-box small {
    color: #666;
    font-weight: 600;
    font-size: 0.85rem;
}

.experience-poster {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.experience-poster::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 90, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.poster-inner {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    border: 15px solid #ffffff;
    transition: all 0.6s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.poster-inner img {
    height: 420px;
    object-fit: cover;
}

.poster-inner:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.journey-badge {
    background: #1a1110;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-top: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.journey-badge i {
    margin-right: 15px;
    color: #f55a00;
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .experience-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .experience-content {
        padding: 40px;
        margin-bottom: 50px;
    }

    .poster-inner {
        transform: none;
    }
}

@media (max-width: 768px) {
    .experience-title {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .experience-content {
        padding: 25px !important;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .experience-section::before,
    .experience-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .experience-title {
        font-size: 1.4rem !important;
    }
}

/* Professional Core Pillars Section Styles */
.core-pillars-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1110;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.pillars-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.pillar-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #f55a00;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.pillar-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 100px rgba(245, 90, 0, 0.12);
    border-color: rgba(245, 90, 0, 0.3);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(245, 90, 0, 0.05);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.5s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
    background: #f55a00;
    transform: rotate(15deg);
}

.pillar-icon-wrapper i {
    font-size: 3rem;
    color: #f55a00;
    transition: all 0.5s ease;
}

.pillar-card:hover .pillar-icon-wrapper i {
    color: #fff;
}

.pillar-card h4 {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #1a1110;
}

.pillar-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section-wrap {
    margin-top: 100px;
    text-align: center;
}

.premium-cta-banner {
    background: #1a1110;
    padding: 50px 70px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-text-content {
    text-align: left;
}

.cta-text-content h5 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.cta-text-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

.cta-btn-wrap .btn-gold {
    padding: 20px 50px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 800;
    border: none;
    background: linear-gradient(135deg, #f55a00 0%, #ff8c00 100%);
}

@media (max-width: 1200px) {
    .premium-cta-banner {
        gap: 50px;
        padding: 40px 50px;
    }
}

@media (max-width: 991px) {
    .premium-cta-banner {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
        gap: 30px;
    }

    .cta-text-content {
        text-align: center;
    }

    .pillars-header h2 {
        font-size: 2.5rem;
    }
}