@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary-color: #333;
    --secondary-color: #f6f8fb;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #fff;
    --max-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Glassmorphism & Professional UI Enhancements */

/* Abstract Background for Glassmorphism Context */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: 
        radial-gradient(circle at 10% 20%, rgba(231, 76, 60, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(128, 0, 32, 0.05) 0%, transparent 40%),
        var(--secondary-color);
    background-attachment: fixed; /* Parallax-like feel */
}

/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}

/* Dark Mode Glass */
body.dark .glass-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Section Headings */
.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
}

body.dark .section h2 {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Blog Section Enhancements */
.blog-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.85);
}

body.dark .blog-card {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Product/Shop Enhancements */
.product-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

body.dark .product-card {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Gallery Enhancements */
.gallery-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

body.dark .gallery-card {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-padding-top: 90px;
}

body.dark {
    --primary-color: #101317;
    --secondary-color: #0f141a;
    --accent-color: #ff7aa2;
    --text-color: #e6e8ea;
    --light-text: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

/* Navigation */
.navbar {
    background: rgba(128, 0, 32, 0.75); /* Slightly more opacity for readability */
    backdrop-filter: saturate(180%) blur(16px); /* Stronger glass effect */
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    color: var(--light-text);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 5000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.theme-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    font-size: 1.1rem;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.25);
    transform: rotate(15deg);
}

body.dark .navbar {
    background: rgba(16, 19, 23, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-link {
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 12px;
    margin-left: 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.admin-link:hover {
    color: #fff;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible; 
    position: relative;
}
.right-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(51,51,51,0.6);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 5001;
    top: 100%;
    left: 0;
}

.dropdown-content li {
    margin: 0;
    padding: 0;
}

.dropdown-content li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    padding: 10px 18px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content li a:hover {
    background-color: #444;
    color: var(--accent-color);
    padding-left: 25px;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content { display: block; }
}

.dropdown .dropbtn i {
    margin-left: 5px;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: rgba(51,51,51,0.6);
    backdrop-filter: blur(10px);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-submenu:hover .submenu-content {
    display: block;
}

.submenu-content li a {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-text);
    padding: 8px 18px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.submenu-content li a:hover {
    background-color: #444;
    color: var(--accent-color);
    padding-left: 25px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background:
      linear-gradient(120deg, rgba(128,0,32,0.35), rgba(0,0,0,0.35)),
      url('images/carousel-host.jpg') no-repeat center center/cover;
    height: 100vh;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Align to right */
    text-align: right;
    position: relative;
    padding-right: 10%; /* Add some spacing from the right edge */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Lighter overlay */
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px; /* Limit width of text area */
    margin: 0; /* Reset auto margin for alignment */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

 

/* About Section Professional Styling with Glassmorphism */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%); /* Subtle professional gradient */
    position: relative;
    overflow: hidden; /* Ensure no overflow */
}

/* Add some subtle shapes for better glass effect */
.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(231, 76, 60, 0.1); /* Brand accent color faint */
    border-radius: 50%;
    z-index: 0;
}

.about-content-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center; /* Center vertically for card balance */
    position: relative;
    z-index: 1;
    
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.4); /* More opaque for readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.about-image-column {
    flex: 1;
    max-width: none;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 20px; /* Soft radius to match glass card */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Elegant shadow */
}

.about-text-column {
    flex: 1.2; /* Give text slightly more space */
    padding-top: 0;
    padding-right: 0;
}

.about-title {
    font-family: 'Playfair Display', serif; /* Elegant Serif */
    font-size: 2.5rem; /* Reduced from 3.5rem */
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.bio-text p {
    font-family: 'Poppins', sans-serif; /* Clean Sans-Serif */
    color: #444; /* Slightly softer than #333 */
    font-size: 0.95rem; /* Reduced from 1.05rem */
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: left;
    font-weight: 300; /* Lighter weight for elegance */
    letter-spacing: 0.01em;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 3rem; /* Reduced from 4rem */
    color: #2c3e50;
    margin: 1.5rem 0 1.5rem;
    transform: rotate(-3deg);
    display: inline-block;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px; /* Tighter gap */
}

.social-links a {
    font-size: 1.4rem; /* Reduced from 1.6rem */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    background: rgba(255,255,255,0.6);
    width: 42px; /* Smaller button */
    height: 42px; /* Smaller button */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Specific brand colors for icons */
.social-links a[aria-label="Facebook"] { color: #3b5998; }
.social-links a[aria-label="Twitter"] { color: #1da1f2; }
.social-links a[aria-label="LinkedIn"] { color: #0077b5; }

.social-links a:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 2rem; /* Less padding on mobile */
    }

    .about-image-column {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .profile-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-text p {
        text-align: center; /* Center text on mobile for better balance */
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}


.about-featured {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.featured-heading {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.featured-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
}

body.dark .featured-card {
    background: rgba(30, 30, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px; /* Slightly softer inner radius */
    margin-bottom: 12px;
}

.featured-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 0.9rem;
}

.events {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.events-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.events-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
}

.events-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-top: 1rem;
}

.events-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.events-desc {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.events-signup {
    display: inline-block;
    background: #800020;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-text);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #c0392b;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.bg-light {
    background: var(--secondary-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: #ccc;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 5px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-card-date {
    padding: 1rem 1rem 0.5rem;
    font-size: 0.85rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}

.blog-card-title {
    padding: 0 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
}

/* Live Section */
.live {
    padding: 6rem 0;
    background: #f8f9fa; /* Slightly different to distinguish from Team/Gallery */
}

body.dark .live {
    background: #15181c;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.live-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

/* Glassmorphism removed for cleaner look matching Team section, 
   unless user specifically requests it back. 
   "Operate correctly" often means clean and usable. */

.live-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.live-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.live-header i {
    font-size: 1.8rem;
}

.youtube-live .live-header i { color: #ff0000; }
.facebook-live .live-header i { color: #1877f2; }

.live-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.live-embed {
    padding: 0;
    position: relative;
    width: 100%;
    /* Maintain aspect ratio for video */
    aspect-ratio: 16 / 9;
    background: #000;
}

/* Specific adjustment for Facebook vertical layout if needed, 
   but 16/9 is safer for general embeds. 
   If FB is vertical, we might need a different ratio or min-height.
*/
.facebook-live .live-embed {
    aspect-ratio: auto;
    height: 500px; /* Fixed height for FB feed usually works better */
}

.live-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.live-link {
    display: block;
    text-align: center;
    padding: 15px;
    color: var(--accent-color);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    background: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.live-link:hover {
    color: #c0392b;
    text-decoration: none;
    background: rgba(255,255,255,0.8);
}

/* Dark Mode Support for Live Section */
body.dark .live-card {
    background: #1e2228;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

body.dark .live-header {
    background: #252a30;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark .live-header h3 {
    color: #fff;
}

body.dark .live-link {
    background: #252a30;
    border-top-color: rgba(255,255,255,0.05);
}

body.dark .live-link:hover {
    background: #2c3238;
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .live-grid {
        grid-template-columns: 1fr; /* Force single column on mobile */
    }
    
    .facebook-live .live-embed {
        height: 400px; /* Slightly shorter on mobile */
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root { --navbar-h: 56px; }
    body {
        padding-top: calc(var(--navbar-h) + env(safe-area-inset-top, 0px));
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: calc(var(--navbar-h) + env(safe-area-inset-top, 0px));
        padding: env(safe-area-inset-top, 0px) 0 0;
        display: flex;
        align-items: center;
        box-shadow: 0 6px 24px rgba(0,0,0,0.12);
        z-index: 5000;
    }
    .navbar .container {
        height: var(--navbar-h);
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        box-sizing: border-box;
        width: 100%;
        position: relative;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform-origin: center;
        translate: -50% -50%;
    }
    .right-actions { display: flex; align-items: center; gap: 8px; }
    .right-actions .admin-link { display: inline-flex; }
    .hamburger { color: var(--light-text); }
    .hamburger i { color: inherit; }
    .logo { display: flex; align-items: center; min-width: 44px; }
    .nav-links {
        position: fixed;
        top: calc(var(--navbar-h) + env(safe-area-inset-top, 0px));
        left: 0;
        bottom: 0;
        width: clamp(280px, 50vw, 420px);
        height: calc(100vh - var(--navbar-h) - env(safe-area-inset-top, 0px));
        transform: translate3d(-100%, 0, 0);
        transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
        will-change: transform;
        pointer-events: none;
        background: var(--primary-color);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 24px;
        overflow-y: auto;
        z-index: 4500;
        box-shadow: 6px 0 24px rgba(0,0,0,0.25);
        border-right: 1px solid rgba(0,0,0,0.08);
    }

    .nav-links li {
        margin: 4px 0;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .logo img {
        height: 44px;
        width: auto;
    }
    .nav-links .mobile-menu-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        background: rgba(0,0,0,0.28);
        color: var(--light-text);
        z-index: 1;
    }
    .nav-links .mobile-menu-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: 0.04em;
    }
    .nav-links .mobile-menu-close {
        background: transparent;
        border: 0;
        color: var(--light-text);
        font-size: 1.25rem;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .nav-links li a {
        border: 1px solid rgba(255,255,255,0.06);
        background: rgba(255,255,255,0.06);
    }

    .hero {
        align-items: center;
        text-align: center;
        padding-right: 0;
        justify-content: center;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

 

    .about .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .about-signature {
        text-align: center;
        display: block;
    }
    
    .about-social {
        justify-content: center;
    }

    .about-featured {
        padding: 3rem 1rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .featured-card img {
        height: 180px;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .events-image img {
        height: 260px;
    }
    .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        width: 100%;
        text-align: center;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-content li a {
        padding: 12px 0;
        background-color: rgba(0, 0, 0, 0.2);
        font-size: 0.9rem;
    }

    .submenu-content {
        position: static;
        display: none;
        background-color: transparent;
        width: 100%;
        text-align: center;
        box-shadow: none;
        padding: 0;
    }

    .submenu-content li a {
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.3);
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-links a {
        display: block;
        padding: 14px 12px;
        color: var(--light-text);
        font-size: 1rem;
        border-radius: 10px;
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

    .dropdown.open > .dropdown-content { display: block; }
    .dropdown-submenu.open > .submenu-content { display: block; }

    .nav-links.active { transform: translate3d(0, 0, 0); pointer-events: auto; }

    /* Adjust Right Actions for Mobile */
    .right-actions {
        margin-left: 10px;
    }
    
    .admin-link {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .theme-toggle {
        font-size: 1rem;
        padding: 4px 8px;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 4400;
    touch-action: none;
}

.pe-freeze {
    pointer-events: none !important;
}
.nav-overlay.active { display: block; }

@media (max-width: 768px) {
    body.dark .nav-links {
        background: rgba(16,19,23,0.95);
    }
}

.contact {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.contact-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-weight: 500;
    margin-top: -1.1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.25rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-detail i {
    color: #800020;
}

.contact-detail a {
    color: inherit;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-form .field-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

.contact-submit {
    display: inline-block;
    background: #800020;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-image img {
        height: 280px;
    }
    .contact-title {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}
/* Footer (Cloned) */
.site-footer {
    background: #800020;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-legal a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-menu li {
    margin: 10px 0;
}

.footer-menu a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.social-list,
.listen-list {
    list-style: none;
}

.social-list li,
.listen-list li {
    margin: 10px 0;
}

.social-list a,
.listen-list a {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.social-list i {
    font-size: 1.2rem;
}

.listen-list i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-label {
        writing-mode: horizontal-tb;
        margin: 10px 0;
    }
    .footer-menus {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
 .blog .blog-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.blog-hero-image {
    position: relative;
}
.blog-hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.blog-overlay {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 55%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 1rem;
}
.blog-meta .blog-date {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
}
.blog-meta .blog-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.3rem 0 1rem;
}
.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 520px;
}
.blog-read {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #800020;
}
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: #000;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: opacity;
}
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
}
.dot.active {
    background: #fff;
}
.carousel-overlay {
    position: absolute;
    left: 6%;
    bottom: 10%;
    color: #fff;
    pointer-events: none;
}
.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #fff, #ffd3e0, #ff7aa2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pop 1.2s ease both;
}
.promo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
    animation: slideUp 1.4s ease 0.2s both;
}
@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes slideUp {
    0% { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.blog-categories {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    margin: 3rem 0 2rem;
    border-radius: 8px;
}
.blog-categories .categories-list a {
    color: #fff;
    margin-right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}
.blog-search input {
    background: transparent;
}



/* Shop Section */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    padding-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 15px 15px 5px;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 15px 15px;
}

body.dark .product-card {
    background: #1e1e1e;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

body.dark .product-name {
    color: #eee;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-media {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item-title {
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

body.dark .gallery-card {
    background: #1e1e1e;
}

body.dark .gallery-item-title {
    color: #eee;
}

.team {
    padding: 6rem 0;
    background: #fff;
}

body.dark .team {
    background: #0f1215;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.team-member {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: grid;
    grid-template-rows: auto 1fr;
}

body.dark .team-member {
    background: #141a20;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.14);
}

.team-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0f1215;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.team-member:hover .team-avatar img {
    transform: scale(1.06);
}

.team-avatar-placeholder {
    display: grid;
    place-items: center;
    background: radial-gradient(800px 380px at 50% 0%, rgba(255, 122, 162, 0.28), transparent 55%),
        radial-gradient(800px 420px at 0% 70%, rgba(231, 76, 60, 0.22), transparent 60%),
        #11151b;
}

.team-avatar-placeholder span {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-body {
    padding: 18px 18px 20px;
    display: grid;
    gap: 10px;
}

.team-name {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
}

body.dark .team-name {
    color: #fff;
}

.team-role {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(17, 24, 39, 0.78);
    background: rgba(17, 24, 39, 0.06);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

body.dark .team-role {
    color: rgba(230, 232, 234, 0.86);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.team-bio {
    margin: 0;
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.7;
    font-size: 0.95rem;
}

body.dark .team-bio {
    color: rgba(230, 232, 234, 0.74);
}

.team-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 2px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: rgba(17, 24, 39, 0.72);
    background: rgba(17, 24, 39, 0.06);
    border: 1px solid rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.team-social a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(231, 76, 60, 0.9);
    border-color: rgba(231, 76, 60, 0.45);
}

body.dark .team-social a {
    color: rgba(230, 232, 234, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark .team-social a:hover {
    color: #0f1215;
    background: rgba(255, 122, 162, 0.9);
    border-color: rgba(255, 122, 162, 0.45);
}

@media (max-width: 768px) {
    .team {
        padding: 4.5rem 0;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .team-avatar {
        aspect-ratio: 4 / 3;
    }
}

/* Sponsors Section */
.sponsors {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

body.dark .sponsors {
    background: #0f1215;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors .section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sponsors .section-title {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.sponsors .section-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

body.dark .sponsors .section-title {
    color: #fff;
}

body.dark .sponsors .section-subtitle {
    color: #aaa;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 20px;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
}

.sponsor-item i {
    font-size: 3.5rem;
    color: #2c3e50;
    transition: all 0.4s ease;
}

.sponsor-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

/* Hover Effects */
.sponsor-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sponsor-item:hover .sponsor-name {
    opacity: 1;
    transform: translateY(0);
}

/* Brand Colors on Hover */
.sponsor-item[title="Google"]:hover i { color: #DB4437; }
.sponsor-item[title="Amazon"]:hover i { color: #FF9900; }
.sponsor-item[title="Spotify"]:hover i { color: #1DB954; }
.sponsor-item[title="Apple"]:hover i { color: #555; }
.sponsor-item[title="Microsoft"]:hover i { color: #F25022; }
.sponsor-item[title="Twitter"]:hover i { color: #1DA1F2; }

/* Dark Mode Adjustments */
body.dark .sponsor-item i {
    color: #a0a0a0;
}

body.dark .sponsor-name {
    color: #ccc;
}

body.dark .sponsor-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

body.dark .sponsor-item[title="Apple"]:hover i { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .sponsors {
        padding: 4rem 0;
    }
    
    .sponsors-grid {
        gap: 30px;
    }
    
    .sponsor-item {
        width: 45%; /* 2 per row */
        padding: 15px;
    }
    
    .sponsor-item i {
        font-size: 2.5rem;
    }
    
    .sponsor-name {
        font-size: 0.8rem;
    }
}

/* Be Our Guest Page Styles */
.guest-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/events-hero.jpg') center/cover no-repeat;
    padding: 8rem 0 4rem;
    color: #fff;
    text-align: center;
}

.guest-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.guest-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.guest-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.guest-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.guest-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.guest-benefits {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

body.dark .guest-benefits {
    background: rgba(255,255,255,0.05);
}

.guest-benefits h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: var(--accent-color);
}

.guest-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

body.dark .guest-form-wrapper {
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    color: var(--text-color);
}

.form-section-title:first-child {
    margin-top: 0;
}

body.dark .form-section-title {
    border-bottom-color: rgba(255,255,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-color);
}

body.dark .form-group input,
body.dark .form-group textarea,
body.dark .form-group select {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.file-upload-wrapper {
    border: 2px dashed #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark .file-upload-wrapper {
    border-color: rgba(255,255,255,0.1);
}

.file-upload-wrapper:hover {
    border-color: var(--accent-color);
    background: rgba(231, 76, 60, 0.02);
}

.file-upload-info {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #888;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-consent input {
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

@media (max-width: 900px) {
    .guest-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guest-intro {
        order: -1;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .guest-header h1 {
        font-size: 2.2rem;
    }
    
    .guest-form-wrapper {
        padding: 1.5rem;
    }
}

/* Past Episodes Page Styles */
.past-episodes-page {
    position: relative;
    background: radial-gradient(1100px 550px at 12% 20%, rgba(231, 76, 60, 0.18), transparent 60%),
        radial-gradient(900px 500px at 88% 18%, rgba(128, 0, 32, 0.16), transparent 55%),
        radial-gradient(900px 520px at 50% 90%, rgba(255, 122, 162, 0.12), transparent 60%),
        var(--secondary-color);
}

.past-episodes-page::before,
.past-episodes-page::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.past-episodes-page::before {
    top: 90px;
    left: -140px;
    background: radial-gradient(circle at 30% 30%, rgba(231, 76, 60, 0.65), transparent 70%);
}

.past-episodes-page::after {
    top: 140px;
    right: -160px;
    background: radial-gradient(circle at 60% 40%, rgba(128, 0, 32, 0.55), transparent 72%);
}

.past-episodes-page .past-episodes-header {
    position: relative;
    z-index: 1;
    padding: 8.5rem 0 4.5rem;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.82), rgba(128, 0, 32, 0.62)),
        url('images/events-hero.jpg') center/cover no-repeat;
}

.past-episodes-page .past-episodes-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-bottom: 16px;
}

.past-episodes-page .past-episodes-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.15rem;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.past-episodes-page .past-episodes-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
}

.past-episodes-page .past-episodes-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

.past-episodes-page .past-episodes-primary,
.past-episodes-page .past-episodes-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.past-episodes-page .past-episodes-primary {
    background: rgba(231, 76, 60, 0.85);
    box-shadow: 0 14px 30px rgba(231, 76, 60, 0.22);
}

.past-episodes-page .past-episodes-secondary {
    background: rgba(255, 255, 255, 0.12);
}

.past-episodes-page .past-episodes-primary:hover,
.past-episodes-page .past-episodes-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.past-episodes-page .past-episodes-section {
    position: relative;
    z-index: 1;
    padding: 4.75rem 0;
}

.past-episodes-page .episodes-shell {
    border-radius: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

body.dark.past-episodes-page .episodes-shell {
    background: rgba(18, 24, 32, 0.66);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.past-episodes-page .episodes-top {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
}

.past-episodes-page .episodes-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--text-color);
    margin-bottom: 6px;
}

.past-episodes-page .episodes-subtitle {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.8;
}

body.dark.past-episodes-page .episodes-subtitle {
    color: rgba(230, 232, 234, 0.72);
}

.past-episodes-page .episodes-controls {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 12px;
}

.past-episodes-page .episodes-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

body.dark.past-episodes-page .episodes-search {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.past-episodes-page .episodes-search i {
    color: rgba(17, 24, 39, 0.55);
}

body.dark.past-episodes-page .episodes-search i {
    color: rgba(230, 232, 234, 0.55);
}

.past-episodes-page .episodes-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.95rem;
}

.past-episodes-page .episodes-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-color);
    outline: none;
}

body.dark.past-episodes-page .episodes-select {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.past-episodes-page .episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.past-episodes-page .episode-card {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.dark.past-episodes-page .episode-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.past-episodes-page .episode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

.past-episodes-page .episode-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.past-episodes-page .episode-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease;
    display: block;
}

.past-episodes-page .episode-card:hover .episode-thumb img {
    transform: scale(1.06);
}

.past-episodes-page .episode-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52));
}

.past-episodes-page .episode-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    z-index: 1;
}

.past-episodes-page .episode-body {
    padding: 16px 16px 18px;
}

.past-episodes-page .episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.past-episodes-page .episode-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(231, 76, 60, 0.12);
    color: rgba(231, 76, 60, 1);
    border: 1px solid rgba(231, 76, 60, 0.16);
}

body.dark.past-episodes-page .episode-tag {
    background: rgba(255, 122, 162, 0.12);
    border-color: rgba(255, 122, 162, 0.18);
    color: rgba(255, 122, 162, 1);
}

.past-episodes-page .episode-tag.subtle {
    background: rgba(17, 24, 39, 0.06);
    border-color: rgba(17, 24, 39, 0.08);
    color: rgba(17, 24, 39, 0.75);
}

body.dark.past-episodes-page .episode-tag.subtle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(230, 232, 234, 0.75);
}

.past-episodes-page .episode-date {
    font-size: 0.85rem;
    color: rgba(17, 24, 39, 0.55);
}

body.dark.past-episodes-page .episode-date {
    color: rgba(230, 232, 234, 0.55);
}

.past-episodes-page .episode-name {
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--text-color);
    margin-bottom: 8px;
}

.past-episodes-page .episode-summary {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

body.dark.past-episodes-page .episode-summary {
    color: rgba(230, 232, 234, 0.72);
}

.past-episodes-page .episode-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.past-episodes-page .episode-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.dark.past-episodes-page .episode-btn {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.past-episodes-page .episode-btn.primary {
    border-color: rgba(231, 76, 60, 0.18);
    background: rgba(231, 76, 60, 0.12);
    color: rgba(231, 76, 60, 1);
}

body.dark.past-episodes-page .episode-btn.primary {
    border-color: rgba(255, 122, 162, 0.22);
    background: rgba(255, 122, 162, 0.12);
    color: rgba(255, 122, 162, 1);
}

.past-episodes-page .episode-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.12);
}

.past-episodes-page .episodes-feature {
    margin-top: 22px;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: center;
}

body.dark.past-episodes-page .episodes-feature {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.past-episodes-page .feature-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(17, 24, 39, 0.6);
    margin-bottom: 10px;
}

body.dark.past-episodes-page .feature-kicker {
    color: rgba(230, 232, 234, 0.6);
}

.past-episodes-page .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.past-episodes-page .feature-subtitle {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
    margin-bottom: 14px;
}

body.dark.past-episodes-page .feature-subtitle {
    color: rgba(230, 232, 234, 0.72);
}

.past-episodes-page .feature-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.past-episodes-page .platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    font-size: 0.9rem;
}

body.dark.past-episodes-page .platform-pill {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.past-episodes-page .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

.past-episodes-page .video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.14);
}

body.dark.past-episodes-page .video-frame {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.past-episodes-page .video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1000px) {
    .past-episodes-page .episodes-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .past-episodes-page .episodes-controls {
        grid-template-columns: 1fr;
    }

    .past-episodes-page .episodes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .past-episodes-page .episodes-feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .past-episodes-page .past-episodes-header {
        padding: 7.5rem 0 3.75rem;
    }

    .past-episodes-page .past-episodes-header h1 {
        font-size: 2.3rem;
    }

    .past-episodes-page .episodes-shell {
        padding: 18px;
        border-radius: 18px;
    }

    .past-episodes-page .episodes-grid {
        grid-template-columns: 1fr;
    }
}

.tmed-pr-page {
    position: relative;
    background: radial-gradient(1000px 520px at 16% 18%, rgba(231, 76, 60, 0.18), transparent 58%),
        radial-gradient(900px 520px at 84% 22%, rgba(128, 0, 32, 0.15), transparent 56%),
        radial-gradient(900px 520px at 50% 92%, rgba(255, 122, 162, 0.12), transparent 60%),
        var(--secondary-color);
}

.tmed-pr-page::before,
.tmed-pr-page::after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(52px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.tmed-pr-page::before {
    top: 110px;
    left: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(231, 76, 60, 0.62), transparent 70%);
}

.tmed-pr-page::after {
    top: 140px;
    right: -170px;
    background: radial-gradient(circle at 60% 40%, rgba(128, 0, 32, 0.52), transparent 72%);
}

.tmed-pr-page .tmed-pr-hero {
    position: relative;
    z-index: 1;
    padding: 8.75rem 0 4.75rem;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.84), rgba(128, 0, 32, 0.62)),
        url('images/events-hero.jpg') center/cover no-repeat;
}

.tmed-pr-page .tmed-pr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-bottom: 16px;
}

.tmed-pr-page .tmed-pr-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.1rem;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.tmed-pr-page .tmed-pr-hero p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.85;
    opacity: 0.95;
}

.tmed-pr-page .tmed-pr-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 26px;
}

.tmed-pr-page .tmed-pr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    background: rgba(255, 255, 255, 0.12);
}

.tmed-pr-page .tmed-pr-btn.primary {
    background: rgba(231, 76, 60, 0.86);
    box-shadow: 0 14px 34px rgba(231, 76, 60, 0.22);
}

.tmed-pr-page .tmed-pr-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.tmed-pr-page .tmed-pr-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 920px;
    margin: 28px auto 0;
}

.tmed-pr-page .tmed-metric {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tmed-pr-page .tmed-metric-value {
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.tmed-pr-page .tmed-metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.tmed-pr-page .tmed-pr-section {
    position: relative;
    z-index: 1;
    padding: 4.75rem 0;
}

.tmed-pr-page .tmed-pr-shell {
    border-radius: 22px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

body.dark.tmed-pr-page .tmed-pr-shell {
    background: rgba(18, 24, 32, 0.66);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.tmed-pr-page .tmed-pr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.tmed-pr-page .tmed-pr-panel {
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.dark.tmed-pr-page .tmed-pr-panel {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tmed-pr-page .tmed-pr-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.tmed-pr-page .tmed-pr-lead {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
    margin-bottom: 14px;
}

body.dark.tmed-pr-page .tmed-pr-lead {
    color: rgba(230, 232, 234, 0.72);
}

.tmed-pr-page .tmed-pr-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tmed-pr-page .tmed-pr-card {
    border-radius: 18px;
    padding: 14px 14px 14px 14px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.dark.tmed-pr-page .tmed-pr-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.tmed-pr-page .tmed-pr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

.tmed-pr-page .tmed-pr-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.16);
    color: rgba(231, 76, 60, 1);
    margin-bottom: 10px;
}

body.dark.tmed-pr-page .tmed-pr-icon {
    background: rgba(255, 122, 162, 0.12);
    border-color: rgba(255, 122, 162, 0.18);
    color: rgba(255, 122, 162, 1);
}

.tmed-pr-page .tmed-pr-card-title {
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-color);
}

.tmed-pr-page .tmed-pr-card-text {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
    font-size: 0.95rem;
}

body.dark.tmed-pr-page .tmed-pr-card-text {
    color: rgba(230, 232, 234, 0.72);
}

.tmed-pr-page .tmed-process {
    margin-top: 18px;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: start;
}

body.dark.tmed-pr-page .tmed-process {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tmed-pr-page .tmed-process-kicker {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: rgba(17, 24, 39, 0.6);
    margin-bottom: 10px;
}

body.dark.tmed-pr-page .tmed-process-kicker {
    color: rgba(230, 232, 234, 0.6);
}

.tmed-pr-page .tmed-process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.tmed-pr-page .tmed-process-text {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
}

body.dark.tmed-pr-page .tmed-process-text {
    color: rgba(230, 232, 234, 0.72);
}

.tmed-pr-page .tmed-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tmed-pr-page .tmed-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body.dark.tmed-pr-page .tmed-step {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tmed-pr-page .tmed-step-num {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: rgba(231, 76, 60, 1);
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.16);
}

body.dark.tmed-pr-page .tmed-step-num {
    color: rgba(255, 122, 162, 1);
    background: rgba(255, 122, 162, 0.12);
    border-color: rgba(255, 122, 162, 0.18);
}

.tmed-pr-page .tmed-step-title {
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-color);
}

.tmed-pr-page .tmed-step-text {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.7;
    font-size: 0.95rem;
}

body.dark.tmed-pr-page .tmed-step-text {
    color: rgba(230, 232, 234, 0.72);
}

.tmed-pr-page .tmed-packages {
    margin-top: 18px;
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.dark.tmed-pr-page .tmed-packages {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tmed-pr-page .tmed-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.tmed-pr-page .tmed-package {
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.dark.tmed-pr-page .tmed-package {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.tmed-pr-page .tmed-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

.tmed-pr-page .tmed-package.featured {
    border-color: rgba(231, 76, 60, 0.22);
    background: linear-gradient(180deg, rgba(231, 76, 60, 0.10), rgba(255, 255, 255, 0.62));
}

body.dark.tmed-pr-page .tmed-package.featured {
    border-color: rgba(255, 122, 162, 0.22);
    background: linear-gradient(180deg, rgba(255, 122, 162, 0.10), rgba(255, 255, 255, 0.04));
}

.tmed-pr-page .tmed-package-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tmed-pr-page .tmed-package-name {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-color);
}

.tmed-pr-page .tmed-package-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.06);
    border: 1px solid rgba(17, 24, 39, 0.08);
    color: rgba(17, 24, 39, 0.75);
}

body.dark.tmed-pr-page .tmed-package-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(230, 232, 234, 0.75);
}

.tmed-pr-page .tmed-package-list {
    display: grid;
    gap: 10px;
    margin: 0 0 14px;
    padding: 0;
}

.tmed-pr-page .tmed-package-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.65;
    font-size: 0.95rem;
}

body.dark.tmed-pr-page .tmed-package-list li {
    color: rgba(230, 232, 234, 0.72);
}

.tmed-pr-page .tmed-package-list i {
    color: rgba(231, 76, 60, 1);
    margin-top: 3px;
}

body.dark.tmed-pr-page .tmed-package-list i {
    color: rgba(255, 122, 162, 1);
}

.tmed-pr-page .tmed-package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dark.tmed-pr-page .tmed-package-cta {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.tmed-pr-page .tmed-package-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.12);
}

.tmed-pr-page .tmed-pr-cta {
    margin-top: 18px;
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

body.dark.tmed-pr-page .tmed-pr-cta {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tmed-pr-page .tmed-pr-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text-color);
    margin-bottom: 6px;
}

.tmed-pr-page .tmed-pr-cta-text {
    color: rgba(17, 24, 39, 0.72);
    line-height: 1.75;
}

body.dark.tmed-pr-page .tmed-pr-cta-text {
    color: rgba(230, 232, 234, 0.72);
}

@media (max-width: 1000px) {
    .tmed-pr-page .tmed-pr-grid {
        grid-template-columns: 1fr;
    }

    .tmed-pr-page .tmed-process {
        grid-template-columns: 1fr;
    }

    .tmed-pr-page .tmed-packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .tmed-pr-page .tmed-pr-hero {
        padding: 7.75rem 0 3.9rem;
    }

    .tmed-pr-page .tmed-pr-hero h1 {
        font-size: 2.25rem;
    }

    .tmed-pr-page .tmed-pr-shell {
        padding: 18px;
        border-radius: 18px;
    }

    .tmed-pr-page .tmed-pr-metrics {
        grid-template-columns: 1fr;
    }
}

/* Mobile Bottom Navigation */
.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: none;
    z-index: 1001;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav .bn-grid {
    height: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.bottom-nav a.bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    line-height: 1;
    height: 64px;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav a.bn-item i {
    font-size: 1.2rem;
}

.bottom-nav a.bn-item.bn-active {
    color: var(--accent-color);
}

@media (max-width: 900px) {
    .bottom-nav {
        display: block;
    }
    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
}

body.dark .bottom-nav {
    background: rgba(16, 19, 23, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.dark .bottom-nav a.bn-item {
    color: #e6e8ea;
}
