/* 
   Surili Virasat: Premium Elite Music Forum Styles
   Theme: Elegant, Cultural, Dark with Gold Accents 
*/

/* --- Fonts --- */
@font-face {
    font-family: 'Atelier du Soleil';
    src: url('./sv_fonts/Atelier%20du%20Soleil.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Biospace';
    src: url('./sv_fonts/Biospace.ttf.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('./sv_fonts/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('./sv_fonts/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('./sv_fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('./sv_fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Rupee Foradian';
    src: url('./sv_fonts/Rupee_Foradian.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    /* Colors */
    --primary: #AE945D; /* Elegant Gold */
    --color-burgundy: #602123; /* Branding Burgundy */
    --primary-light: #f5e6c4;
    --primary-dark: #602123; /* Using burgundy as dark accent for buttons/borders */
    --bg-dark: #0f1115;
    /* Deep rich dark background */
    --bg-darker: #0a0b0d;
    --bg-light: #000000;
    /* Pure black for background */
    --text-main: #ffffff;
    /* White text */
    --text-muted: #aaaaaa;
    --text-dark: #ffffff;
    /* White text */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Gilroy', sans-serif;
    --font-tagline: 'Atelier du Soleil', cursive;
    --font-subcopy: 'Biospace', sans-serif;
    --font-rupee: 'Rupee Foradian', sans-serif;

    /* Spacing & Layout */
    --section-pad: 6rem 2rem;
    --border-radius: 8px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Base */
.main-tagline {
    font-family: var(--font-tagline) !important;
    font-weight: normal !important;
}

.sub-copy {
    font-family: var(--font-subcopy) !important;
    font-weight: normal !important;
}

.rupee {
    font-family: var(--font-rupee);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.highlight {
    color: var(--primary);
    font-style: italic;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #AE945D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(174, 148, 93, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: #AE945D;
}

.bg-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.bg-dark,
.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-main);
}

.section {
    padding: var(--section-pad);
}

/* --- Layouts --- */
.layout-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .layout-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }

    .layout-split>* {
        flex: 1;
    }

    .layout-split.reverse {
        flex-direction: row-reverse;
    }
}

.align-center {
    align-items: center;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 11, 13, 0.95);
    padding: 0.8rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img.full-logo {
    border-radius: 0;
    max-width: 180px;
    height: auto;
    transition: max-width 0.3s ease;
}

@media (min-width: 768px) {
    .logo img.full-logo {
        max-width: 250px;
    }
}

.nav-links {
    display: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links li a {
        color: #fff;
        font-weight: 500;
        font-size: 0.95rem;
        position: relative;
    }

    .nav-links li a:not(.btn-primary)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-links li a:hover:not(.btn-primary)::after {
        width: 100%;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu Override */
.nav-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.nav-active li a {
    color: var(--primary);
    /* #C3924F */
    font-size: 1.5rem;
    font-weight: 500;
}

.nav-active li a.btn-primary {
    color: #fff;
}

.nav-active li {
    opacity: 0;
    animation: navLinkFade 0.5s ease forwards;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('Images/page3_img2.jpeg') no-scene, #000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 160px;
    /* Accounts for fixed navbar to prevent overlap */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 70%, #000000 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/page1_img2.jpeg') center/cover;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero .subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.hero .title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero .location {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-highlight {
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(195, 146, 79, 0.3);
    border-bottom: 1px solid rgba(195, 146, 79, 0.3);
    background: linear-gradient(90deg, transparent 0%, rgba(195, 146, 79, 0.05) 50%, transparent 100%);
}

.hero-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
    font-weight: 300;
    margin: 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin: -0.5rem;
}

.hero-actions > a {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    box-sizing: border-box;
    margin: 0.5rem;
}

/* --- Sections Common --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

.dark-theme .lead-text {
    color: #fff;
}

/* --- About Section --- */
.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.icon-check {
    color: var(--primary);
    font-weight: bold;
    font-style: normal;
}

.image-collage {
    position: relative;
}

/* --- Images Resizing --- */
.main-img,
.rounded-img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    margin: 0 auto;
}

.main-img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rounded-img {
    border-radius: var(--border-radius-lg);
}

.floating-img {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    border-radius: var(--border-radius);
    border: 8px solid var(--bg-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- Quote Banner --- */
.quote-banner {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 5rem 2rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-heading);
    font-style: italic;
}

/* --- Auditorium Section --- */
.premium-list {
    margin-top: 1rem;
}

.premium-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.premium-list .icon-box {
    width: 80px;
    height: 80px;
    background: #111111;
    /* Dark center like reference */
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.premium-list .icon-box.icon-venue {
    border-color: #ffb703;
    box-shadow: 0 0 15px rgba(255, 183, 3, 0.4), inset 0 0 10px rgba(255, 183, 3, 0.1);
}

.premium-list .icon-box.icon-immersive {
    border-color: #a200ff;
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.4), inset 0 0 10px rgba(162, 0, 255, 0.1);
}

.premium-list .icon-box.icon-expressive {
    border-color: #00b4d8;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.4), inset 0 0 10px rgba(0, 180, 216, 0.1);
}

.premium-list .icon-box.icon-personal {
    border-color: #00e676;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4), inset 0 0 10px rgba(0, 230, 118, 0.1);
}

.premium-list .icon-box.icon-virtual {
    border-color: #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.4), inset 0 0 10px rgba(255, 0, 85, 0.1);
}

.premium-list h4 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.rounded-img {
    border-radius: var(--border-radius-lg);
}

.shadow-lg {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- Baithaks Section --- */
.baithaks {
    position: relative;
}

.baithak-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.card.glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.card.glass h4 {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}



/* --- Unique Features Section --- */
/* --- Journey We Curate Section --- */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .journey-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.journey-card {
    display: flex;
    flex-direction: column;
}

.journey-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 2rem !important;
    /* Adding space below the image */
}

.box-title {
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.bg-texture {
    background-color: var(--bg-light);
    background-image: radial-gradient(rgba(195, 146, 79, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--primary);
}

.f-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary);
}

/* --- CTA Join Us Section --- */
.cta {
    position: relative;
    color: #fff;
    padding: 8rem 2rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: -2;
}

.cta-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #000000;
    /* Dark overlay */
    z-index: -1;
}

.cta .title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.cta-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.beliefs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.belief {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    padding: 1rem;
    border-left: 2px solid var(--primary);
    background: rgba(255, 255, 255, 0.05);
    text-align: left;
}

.action-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.phone a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-light);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.qr-code {
    height: auto;
    background: transparent;
    padding: 5px;
    border-radius: 8px;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.store-btn:hover {
    background: #222;
    border-color: #555;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
}

/* --- UI Elements & Communication (Forms, Receipts, Contact) --- */
input, select, textarea, button, 
.contact-info, .receipt, .payment-btn, 
.form-section-title, .contact-form-container h3,
.membership-form {
    font-family: var(--font-body) !important;
}

.form-section-title, .contact-form-container h3, .box-title {
    font-weight: 700 !important;
}

/* --- Contact Form --- */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(195, 146, 79, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form-container h3 {
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 2px rgba(195, 146, 79, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* --- Footer --- */
.footer {
    background: var(--bg-darker);
    color: var(--text-muted);
    padding: 3rem 2rem;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 1rem;
}

.footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

/* --- Animations --- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Membership Form --- */
.membership-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 17, 21, 0.8);
    border: 1px solid rgba(195, 146, 79, 0.3);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

.form-section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(195, 146, 79, 0.2);
    padding-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: 1 / -1;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%20fill%3D%22%23c3924f%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.custom-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(195, 146, 79, 0.2);
}

.custom-select option {
    background-color: var(--bg-dark);
    color: #fff;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Radio Cards */
.custom-radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 600px) {
    .custom-radio-group {
        flex-direction: row;
    }
}

.radio-card {
    flex: 1;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card .card-content {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-fast);
}

.radio-card input[type="radio"]:checked+.card-content {
    border-color: var(--primary);
    background: rgba(195, 146, 79, 0.1);
    box-shadow: 0 4px 15px rgba(195, 146, 79, 0.2);
}

.radio-card .card-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.radio-card input[type="radio"]:checked+.card-content h4 {
    color: var(--primary);
}

.radio-card .card-content .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin: 0;
}