/* ===========================
   ASTRO SADHGURU - CUSTOM STYLES
   =========================== */

/* Root Variables */
:root {
    --primary-color: #F78102;
    --primary-dark: #D66F02;
    --secondary-color: #FFF9F2;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --gradient-primary: linear-gradient(135deg, #F78102 0%, #FF9A3C 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-pink: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    --gradient-orange: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Gradient Text */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 129, 2, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 129, 2, 0.4);
    color: white;
}

.btn-gradient:active {
    transform: translateY(0);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF9F2 0%, #FFE8CC 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 129, 2, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Quick Action Cards */
.quick-action-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}

/* AI Features */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ai-card {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #3B82F6;
}

/* Stats Cards */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Expert Cards */
.expert-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.expert-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.expert-info {
    padding: 1.5rem;
}

.rating {
    color: #FFA500;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Service Buttons */
.service-btn {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-btn i {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Sacred Service Cards */
.sacred-service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sacred-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.sacred-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Tool Cards */
.tool-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.tool-card:hover::before {
    top: -100%;
    right: -100%;
}

.tool-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.tool-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-purple {
    background: var(--gradient-purple);
}

.tool-blue {
    background: var(--gradient-blue);
}

.tool-pink {
    background: var(--gradient-pink);
}

.tool-orange {
    background: var(--gradient-orange);
}

/* Celebrity Cards */
.celebrity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    height: 400px;
}

.celebrity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.celebrity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    color: white;
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.celebrity-card:hover .celebrity-img {
    transform: scale(1.1);
}

.celebrity-card:hover .celebrity-overlay {
    transform: translateY(0);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Temple Cards */
.temple-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.temple-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.temple-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.temple-info {
    padding: 1.5rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    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-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    color: white;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .expert-img,
    .temple-img,
    .product-img {
        height: 200px;
    }
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* New Sections Styles */
.card-light-orange {
    background: #FFF9F2;
    border: 1px solid #FFE8CC;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card-light-orange:hover {
    box-shadow: 0 4px 12px rgba(247, 129, 2, 0.1);
    border-color: var(--primary-color);
}

.icon-orange {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.service-item-grid {
    background: #FFFDFB;
    border: 1px solid #FFF3E5;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    transition: all 0.2s ease;
}

.service-item-grid:hover {
    background: #FFF9F2;
    border-color: var(--primary-color);
}

.service-item-grid i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-item-grid span {
    font-size: 0.95rem;
    font-weight: 500;
}

.philosophy-text-card {
    border: 1px solid #FFE8CC;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    background: white;
}

.stat-item-alt {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #FFE8CC;
    border-radius: 12px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item-alt i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item-alt h3 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item-alt p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0px;
    font-weight: 600;
}

.stat-item-alt small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Spin & Win Section Styles */
.spin-win-section {
    background: #FFF5EC;
    position: relative;
    overflow: hidden;
}

.spin-win-badge {
    background: #F97316;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.wheel-container {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.wheel-main {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: conic-gradient(#FDA4AF 0deg 45deg,
            #6EE7B7 45deg 90deg,
            #FDE047 90deg 135deg,
            #99F6E4 135deg 180deg,
            #FFD8A8 180deg 225deg,
            #BFDBFE 225deg 270deg,
            #DDD6FE 270deg 315deg,
            #FFC9C9 315deg 360deg);
    position: relative;
    transition: transform 3s cubic-bezier(0.2, 0, 0.2, 1);
}

.wheel-segment-label {
    position: absolute;
    width: 60px;
    height: 50%;
    left: 50%;
    top: 0;
    margin-left: -30px;
    transform-origin: bottom center;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    text-align: center;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #F97316;
    border-radius: 50%;
    border: 4px solid white;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #F97316;
    z-index: 3;
}

.prize-list-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.prize-item {
    background: #FFF9F2;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.prize-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prize-icon-box {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.prize-text h6 {
    margin-bottom: 0px;
    font-weight: 700;
    color: var(--text-dark);
}

.prize-text p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-spin {
    background: #F97316;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2rem;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.btn-spin:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    background: #EA580C;
    color: white;
}

.tnc-box {
    background: white;
    border: 1px solid #FFE8CC;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 600px;
    margin: 3rem auto 0;
}

.shadow-icon {
    filter: drop-shadow(0 10px 15px rgba(247, 129, 2, 0.3));
}

.wheel-segment-label {
    position: absolute;
    width: 100px;
    height: 50%;
    left: 50%;
    top: 0;
    margin-left: -50px;
    transform-origin: bottom center;
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    text-align: center;
}

/* Begin Your Cosmic Journey (Enhanced Contact) */
.contact-enhanced-section {
    background: #FFF9F2;
    padding: 80px 0;
}

.booking-form-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE8CC;
}

.booking-form-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control-custom {
    border: 1px solid #eee;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    background: #FAFAFA;
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(247, 129, 2, 0.1);
    outline: none;
}

.contact-info-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-card-alt {
    background: white;
    border: 1px solid #FFE8CC;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 129, 2, 0.05);
}

.contact-info-card-alt i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card-alt h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-card-alt p {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-card-alt span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.special-offer-box {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.special-offer-box::before {
    content: '★';
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(20deg);
}

.special-offer-box h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.special-offer-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Sections Styles */
.service-card-premium {
    background: white;
    border: 1px solid #FFE8CC;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 129, 2, 0.1);
}

.service-card-premium .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.service-card-premium .duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.cta-box-light {
    background: #FFF9F2;
    border: 1px solid #FFE8CC;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.tool-card-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tool-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tool-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.tool-body {
    padding: 1.5rem;
}

.tool-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tool-body li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.tool-body li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Tool Header Colors */
.bg-purple {
    background: #A855F7;
}

.bg-blue-alt {
    background: #3B82F6;
}

.bg-pink-alt {
    background: #EC4899;
}

.bg-green-alt {
    background: #22C55E;
}

.bg-orange-alt {
    background: #F97316;
}

.bg-indigo-alt {
    background: #6366F1;
}

.ai-step-item {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(247, 129, 2, 0.3);
}

.ai-reading-card {
    background: white;
    border: 1px solid #FFE8CC;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.ai-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ai-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.ai-card-body {
    padding: 1.5rem;
}

.privacy-badge {
    background: #FFF9F2;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Media Mentions Bar */
.media-mentions-bar {
    background: #FAFAFA;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.media-logo-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1rem 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.media-logo-grid:hover {
    opacity: 1;
}

.media-logo-grid i {
    font-size: 1.5rem;
    color: #666;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* Daily Horoscope Grid */
.horoscope-grid-section {
    background: #fff;
}

.horoscope-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .horoscope-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .horoscope-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .horoscope-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.zodiac-card {
    background: white;
    border: 1px solid #FFE8CC;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.zodiac-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(247, 129, 2, 0.1);
    border-color: var(--primary-color);
}

.zodiac-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #FFF9F2;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.zodiac-card h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.zodiac-card span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Daily Panchang Section */
.panchang-section {
    background: linear-gradient(135deg, #FFF9F2 0%, #FFF5EC 100%);
    border-top: 1px solid #FFE8CC;
}

.panchang-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #FFE8CC;
    height: 100%;
    text-align: center;
}

.panchang-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.panchang-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #FFE8CC;
}

.panchang-detail-item:last-child {
    border-bottom: none;
}

.panchang-label {
    font-weight: 600;
    color: var(--text-dark);
}

.panchang-value {
    color: var(--primary-color);
    font-weight: 700;
}

/* Trending Media (Reels) */
.trending-reels-section {
    background: #fff;
}

.reel-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reel-card:hover {
    transform: scale(1.03);
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.reel-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

/* Download App Section */
.download-app-section {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    border-radius: 40px;
    margin: 4rem 0;
    padding: 4rem;
    overflow: hidden;
    position: relative;
}

.app-mockup {
    position: relative;
    z-index: 2;
}

.app-badge {
    height: 45px;
    margin-right: 1rem;
    margin-top: 1rem;
}

/* Blog Section */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-body {
    padding: 1.5rem;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}