/*
Theme Name: Transmedia Corporation
Theme URI: https://transmedia.co.zw
Author: Your Agency Name
Author URI: https://yourwebsite.com
Description: Custom corporate theme for Transmedia Corporation - TV & Radio Broadcasting Services
Version: 1.0.0
License: GPL v2 or later
Text Domain: transmedia
*/

/*--------------------------------------------------------------
COLOR SYSTEM - Burgundy, Black & Off-White
--------------------------------------------------------------*/
:root {
    /* Brand Core */
    --burgundy: #6B1E2E;
    --burgundy-dark: #4A1420;
    --burgundy-light: #8B2E40;
    --burgundy-rgb: 107, 30, 46;
    
    --black: #1A1A1A;
    --black-soft: #2A2A2A;
    --black-rich: #0F0F0F;
    
    --offwhite: #F5F1E8;
    --offwhite-warm: #EDE6D6;
    --offwhite-cream: #FAF6ED;
    --offwhite-rgb: 245, 241, 232;
    
    /* Accents */
    --gold: #D4AF37;
    --gold-dark: #B8962E;
    --gold-light: #E5C55A;
    
    /* Legacy aliases */
    --brand-primary: #1A1A1A;
    --brand-secondary: #6B1E2E;
    --brand-black: #1A1A1A;
    --brand-silver: #D7D7D7;
    --brand-silver-light: #FFFFFF;
    --brand-silver-dark: #868686;
    --brand-gold: #D4AF37;
    --surface: #FFFFFF;
    --surface-dark: #1A1A1A;
    
    /* UI */
    --background: #F5F1E8;
    --background-alt: #EDE6D6;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-light: #FFFFFF;
    --text-muted: #8A8A8A;
    
    /* Status */
    --live: #C62828;
    --success: #2E7D32;
    --warning: #E65100;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.06);
    --shadow-medium: 0 8px 30px rgba(26, 26, 26, 0.1);
    --shadow-strong: 0 15px 50px rgba(26, 26, 26, 0.15);
    --shadow-burgundy: 0 8px 30px rgba(107, 30, 46, 0.2);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
}

/*--------------------------------------------------------------
GLOBAL ANIMATIONS
--------------------------------------------------------------*/
@keyframes float-subtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float-medium {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(2deg); }
    66% { transform: translate(-15px, 10px) rotate(-2deg); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/*--------------------------------------------------------------
REVEAL ANIMATIONS
--------------------------------------------------------------*/
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/*--------------------------------------------------------------
DECORATIVE ELEMENTS
--------------------------------------------------------------*/
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.15);
    pointer-events: none;
    z-index: 0;
    animation: float-medium 8s ease-in-out infinite;
}

/*--------------------------------------------------------------
TABLE OF CONTENTS
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
6.0 - Header & Top Bar
7.0 - Footer
8.0 - Homepage / Hero
9.0 - Services Page
10.0 - Frequencies Page
11.0 - Contact Page
12.0 - Blog/Posts
13.0 - Utilities
14.0 - Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--offwhite);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-dark);
}

ul, ol {
    list-style: none;
}

/*--------------------------------------------------------------
2.0 - Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--black);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
    padding: 0.35rem 1.1rem;
    background: rgba(var(--burgundy-rgb), 0.08);
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(var(--burgundy-rgb), 0.1);
}

.section-subtitle::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 0.5rem;
    vertical-align: middle;
    animation: pulse-soft 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    line-height: 1.15;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    margin-top: 1rem;
    border-radius: 2px;
}

.section-header.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/*--------------------------------------------------------------
3.0 - Elements
--------------------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--offwhite);
    box-shadow: 0 4px 15px rgba(var(--burgundy-rgb), 0.25);
}

.btn-primary:hover {
    color: var(--offwhite);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--burgundy-rgb), 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--offwhite);
    border: 2px solid rgba(var(--offwhite-rgb), 0.6);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--offwhite);
    color: var(--burgundy);
    border-color: var(--offwhite);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--offwhite-rgb), 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--offwhite);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--burgundy-rgb), 0.3);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.0625rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-burgundy {
    background: rgba(var(--burgundy-rgb), 0.1);
    color: var(--burgundy);
    border: 1px solid rgba(var(--burgundy-rgb), 0.2);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/*--------------------------------------------------------------
4.0 - Forms
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 2px solid rgba(var(--burgundy-rgb), 0.15);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-primary);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(var(--burgundy-rgb), 0.1);
    transform: translateY(-1px);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/*--------------------------------------------------------------
5.0 - Navigation
--------------------------------------------------------------*/
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

#primary-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

#primary-menu > li {
    position: relative;
}

#primary-menu > li > a {
    display: block;
    padding: 0.5rem 0;
    color: var(--black);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    position: relative;
}

#primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

#primary-menu > li > a:hover {
    color: var(--burgundy);
}

#primary-menu > li > a:hover::after,
#primary-menu > li.current-menu-item > a::after {
    width: 100%;
}

#primary-menu > li.current-menu-item > a {
    color: var(--burgundy);
    font-weight: 600;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--surface);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--burgundy);
    overflow: hidden;
}

#primary-menu > li:hover .sub-menu,
#primary-menu > li.focus .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--black);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.sub-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sub-menu li a:hover {
    background: rgba(var(--burgundy-rgb), 0.04);
    color: var(--burgundy);
    padding-left: 1.75rem;
}

.sub-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-icon {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

#primary-menu > li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--black);
}

.menu-icon {
    display: block;
    width: 28px;
    height: 22px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-icon span:nth-child(3) { bottom: 0; }

.menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

.menu-text {
    display: none;
}

.header-contact {
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(var(--burgundy-rgb), 0.1);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.header-phone:hover {
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.header-phone i {
    font-size: 1rem;
}

/*--------------------------------------------------------------
6.0 - Header & Top Bar
--------------------------------------------------------------*/
.site-header {
    background: var(--offwhite);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(var(--burgundy-rgb), 0.08);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(var(--burgundy-rgb), 0.08);
    position: relative;
}

.header-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--burgundy-rgb), 0.3), transparent);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--black);
}

.site-title a:hover {
    color: var(--burgundy);
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--offwhite);
    padding: 0.55rem 0;
    font-size: 0.8125rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--burgundy) 0%, 
        var(--gold) 50%, 
        var(--burgundy) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(var(--offwhite-rgb), 0.85);
    font-weight: 500;
}

.top-bar-text i {
    color: var(--gold);
    font-size: 0.75rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.top-bar-social {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.top-bar-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 241, 232, 0.1);
    color: #F5F1E8 !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 241, 232, 0.15);
    position: relative;
    overflow: hidden;
}

.top-bar-social .social-link i,
.top-bar-social .social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    fill: currentColor;
    color: inherit;
}

.top-bar-social .social-link:hover {
    transform: translateY(-3px) scale(1.05);
    color: #FFFFFF !important;
    border-color: transparent;
}

.top-bar-social .social-link:hover i,
.top-bar-social .social-link:hover svg {
    transform: scale(1.15);
}

.top-bar-social .social-link.facebook:hover {
    background: #1877F2;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

.top-bar-social .social-link.x-twitter:hover {
    background: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

/*--------------------------------------------------------------
7.0 - Footer (Off-White Background)
--------------------------------------------------------------*/
.site-footer {
    background: var(--offwhite);
    color: var(--text-primary);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(var(--burgundy-rgb), 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--burgundy) 0%, 
        var(--gold) 50%, 
        var(--burgundy) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 6s ease infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    color: var(--black);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    margin-top: 0.5rem;
    border-radius: 2px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 1rem 0;
    line-height: 1.7;
}

.footer-follow-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 1.25rem 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-follow-text i {
    color: var(--burgundy);
    font-size: 0.75rem;
    animation: heart-beat 2s ease-in-out infinite;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;          /* or var(--offwhite) / a light color */
    color: var(--black);              /* icon is black */
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--black);   /* black ring outline */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social .social-link i,
.footer-social .social-link svg {
    fill: currentColor;
    color: inherit;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-social .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.25);
    color: var(--offwhite);
}

.footer-social .social-link:hover i,
.footer-social .social-link:hover svg {
    transform: scale(1.15);
}

.footer-social .social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.footer-social .social-link.x-twitter:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--burgundy);
}

.footer-menu a:hover {
    color: var(--burgundy);
    padding-left: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-info li i {
    color: var(--burgundy);
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 16px;
}

.contact-info li a {
    color: var(--text-secondary);
}

.contact-info li a:hover {
    color: var(--burgundy);
}

.footer-bottom {
    border-top: 1px solid rgba(var(--burgundy-rgb), 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.footer-credit i {
    color: var(--burgundy);
    animation: heart-beat 2s ease-in-out infinite;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}
/*--------------------------------------------------------------
8.0 - Homepage / HERO
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    padding: 5rem 0;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: var(--offwhite);
    overflow: hidden;
    background: var(--black);
}

/* Full quality background image — no overlay */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay REMOVED — image shows at full quality */
.hero-overlay {
    display: none;
}

.hero-section .bg-orb.orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(var(--burgundy-rgb), 0.35) 0%, transparent 70%);
    animation: float-medium 10s ease-in-out infinite;
    opacity: 0.6;
}

.hero-section .bg-orb.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
    animation: float-medium 12s ease-in-out infinite reverse;
    opacity: 0.6;
}

.hero-section .bg-orb.orb-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, rgba(139, 46, 64, 0.25) 0%, transparent 70%);
    animation: float-subtle 8s ease-in-out infinite;
    opacity: 0.6;
}

.hero-section .floating-shape.shape-1 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 8%;
    border-color: rgba(212, 175, 55, 0.35);
    animation-delay: 0s;
}

.hero-section .floating-shape.shape-2 {
    width: 140px;
    height: 140px;
    top: 60%;
    right: 12%;
    border-color: rgba(212, 175, 55, 0.2);
    animation-delay: 1.5s;
}

.hero-section .floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 25%;
    border-color: rgba(212, 175, 55, 0.3);
    animation-delay: 3s;
}

/* Floating particles */
.hero-section .particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    z-index: 2;
    pointer-events: none;
}

.hero-section .particle.p1 { top: 20%; left: 12%; animation: float-subtle 4s ease-in-out infinite; }
.hero-section .particle.p2 { top: 45%; left: 8%; animation: float-subtle 5s ease-in-out infinite 0.5s; }
.hero-section .particle.p3 { top: 70%; left: 15%; animation: float-subtle 4.5s ease-in-out infinite 1s; }
.hero-section .particle.p4 { top: 30%; right: 18%; animation: float-subtle 5.5s ease-in-out infinite 1.5s; }
.hero-section .particle.p5 { top: 55%; right: 10%; animation: float-subtle 4s ease-in-out infinite 2s; }
.hero-section .particle.p6 { top: 80%; right: 20%; animation: float-subtle 5s ease-in-out infinite 2.5s; }

/* Grid overlay REMOVED to keep image quality clean */
.hero-section::before {
    display: none;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    position: relative;
    z-index: 4;
    padding: 1rem 1.5rem;
    border-radius: 20px;
}

/* Subtle backdrop on text only (for readability over image) */
.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.55) 0%, 
        rgba(74, 20, 32, 0.35) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    z-index: -1;
}

.hero-badge-wrap {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(107, 30, 46, 0.35) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.6rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold-light);
    position: relative;
    animation: float-subtle 3.5s ease-in-out infinite;
    box-shadow: 
        0 8px 24px rgba(107, 30, 46, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    animation: pulse-soft 1.5s ease-in-out infinite;
    position: relative;
}

.hero-badge .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

/* Typewriter title */
.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--offwhite);
    letter-spacing: -0.02em;
    min-height: 5.5em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .typed-line {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    vertical-align: bottom;
}

.hero-title .typed-line.highlight {
    color: var(--gold);
    position: relative;
}

.hero-title .typed-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(var(--burgundy-rgb), 0.45);
    z-index: -1;
    border-radius: 8px;
    transform: skewX(-5deg);
}

.hero-title .cursor {
    display: inline-block;
    color: var(--gold);
    font-weight: 300;
    margin-left: 4px;
    animation: blink-cursor 0.9s step-end infinite;
}

.hero-description {
    font-size: 1.0625rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.75;
    color: rgba(var(--offwhite-rgb), 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 460px;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.25);
    animation: rotate-slow 30s linear infinite;
    z-index: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    border: 1px solid rgba(var(--burgundy-rgb), 0.3);
    animation: rotate-slow 45s linear infinite reverse;
    z-index: 0;
}

.hero-mockup {
    max-width: 90%;
    position: relative;
    z-index: 1;
    animation: float-subtle 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 50px rgba(107, 30, 46, 0.5));
}

/* Services Highlight */
.services-highlight {
    padding: 5.5rem 0;
    background: var(--offwhite);
    position: relative;
    overflow: hidden;
}

.services-highlight::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(var(--burgundy-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 12s ease-in-out infinite;
    pointer-events: none;
}

.services-highlight::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 15s ease-in-out infinite reverse;
    pointer-events: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--burgundy-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: scale(1.5);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-burgundy);
    border-color: rgba(var(--burgundy-rgb), 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(var(--burgundy-rgb), 0.1) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--burgundy);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate-slow 15s linear infinite;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--offwhite);
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(var(--burgundy-rgb), 0.35);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--gold-dark);
    gap: 0.75rem;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        var(--black) 0%, 
        var(--burgundy-dark) 100%);
    color: var(--offwhite);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(var(--burgundy-rgb), 0.4) 0%, transparent 40%);
    animation: pulse-soft 8s ease-in-out infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 241, 232, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 241, 232, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem 1rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 2px;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
    text-shadow: 0 4px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 6px 35px rgba(212, 175, 55, 0.7);
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(var(--offwhite-rgb), 0.85);
    display: block;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* About Snippet */
.about-snippet {
    padding: 5.5rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.about-snippet::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--burgundy-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 14s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text .section-title::after {
    margin-left: 0;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .highlight-text {
    color: var(--burgundy);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--burgundy);
    border-radius: 16px;
    z-index: 0;
    transition: all 0.5s ease;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float-subtle 5s ease-in-out infinite;
}

.about-image:hover img {
    transform: translateY(-5px);
}

/* News Section */
.news-section {
    padding: 5.5rem 0;
    background: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--burgundy-rgb), 0.3), transparent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.news-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.news-card:hover::after {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-burgundy);
}

.news-thumbnail {
    overflow: hidden;
    position: relative;
}

.news-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-thumbnail img {
    transform: scale(1.08);
}

.news-content {
    padding: 1.75rem;
}

.news-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.75rem;
    background: rgba(var(--burgundy-rgb), 0.08);
    border-radius: 12px;
}

.news-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: var(--black);
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--burgundy);
}

.news-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.read-more {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--gold-dark);
    gap: 0.75rem;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, 
        var(--burgundy) 0%, 
        var(--burgundy-dark) 100%);
    color: var(--offwhite);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 10s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-medium 12s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--offwhite);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: rgba(var(--offwhite-rgb), 0.9);
}

/*--------------------------------------------------------------
9.0 - Services Page
--------------------------------------------------------------*/
.services-page {
    padding: 2rem 0;
    background: var(--surface);
}

.service-category {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(var(--burgundy-rgb), 0.1);
}

.service-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--burgundy);
}

.channel-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.channel-list li {
    padding: 0.5rem;
    background: var(--background);
    border-radius: 6px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.frequency-notice {
    background: rgba(var(--burgundy-rgb), 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--burgundy);
    margin-top: 1.5rem;
}

.frequency-notice i {
    color: var(--burgundy);
    margin-right: 0.5rem;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.channel-item {
    background: var(--background);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.coming-soon {
    text-align: center;
    padding: 2rem;
    background: rgba(var(--burgundy-rgb), 0.05);
    border-radius: 8px;
    margin: 2rem 0;
}

.coming-soon .badge {
    background: var(--burgundy);
    color: var(--offwhite);
}

.leasing-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.leasing-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.leasing-item:hover {
    background: var(--surface);
    transform: translateY(-5px);
    box-shadow: var(--shadow-burgundy);
}

.leasing-item i {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.leasing-item:hover i {
    color: var(--gold-dark);
    transform: scale(1.1) rotate(10deg);
}

/*--------------------------------------------------------------
10.0 - Frequencies Page
--------------------------------------------------------------*/
.frequencies-page {
    padding: 2rem 0;
    background: var(--surface);
}

.frequency-tools {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid rgba(var(--burgundy-rgb), 0.15);
    border-radius: 30px;
    background: var(--surface);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.filter-btn.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--offwhite);
}

.frequency-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.frequency-table thead {
    background: var(--black);
    color: var(--offwhite);
}

.frequency-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.frequency-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(var(--burgundy-rgb), 0.08);
    color: var(--text-secondary);
}

.frequency-table tbody tr:hover {
    background: rgba(var(--burgundy-rgb), 0.03);
}

.type-badge.radio {
    background: rgba(46, 125, 50, 0.1);
    color: var(--success);
}

.type-badge.tv {
    background: rgba(var(--burgundy-rgb), 0.1);
    color: var(--burgundy);
}

/*--------------------------------------------------------------
11.0 - Contact Page
--------------------------------------------------------------*/
.contact-page {
    padding: 2rem 0;
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--burgundy-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--burgundy);
    color: var(--offwhite);
    transform: scale(1.1) rotate(-10deg);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--background);
    border-radius: 50%;
    color: var(--black);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--burgundy);
    color: var(--offwhite);
    transform: translateY(-3px) rotate(8deg);
}

.contact-form-wrapper {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--burgundy-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/*--------------------------------------------------------------
12.0 - Blog/Posts
--------------------------------------------------------------*/
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-burgundy);
}

.post-title a:hover {
    color: var(--burgundy);
}

/*--------------------------------------------------------------
13.0 - Utilities
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

.bg-dark {
    background: var(--black);
    color: var(--offwhite);
}

.bg-burgundy {
    background: var(--burgundy);
    color: var(--offwhite);
}

.bg-offwhite {
    background: var(--offwhite);
    color: var(--black);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*--------------------------------------------------------------
14.0 - Responsive
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
        min-height: 4.5em;
    }
    
    .hero-image::before,
    .hero-image::after {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .menu-text {
        display: block;
        font-weight: 600;
        font-size: 0.875rem;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation.toggled {
        display: flex;
    }
    
    #primary-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    #primary-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(var(--burgundy-rgb), 0.08);
    }
    
    #primary-menu > li > a {
        padding: 0.85rem 0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        background: transparent;
        display: none;
        border-top: none;
    }
    
    #primary-menu > li.menu-item-has-children.active .sub-menu {
        display: block;
    }
    
    .header-contact {
        margin: 1rem 0 0;
        padding: 1rem 0 0;
        border-left: none;
        border-top: 1px solid rgba(var(--burgundy-rgb), 0.1);
        width: 100%;
    }
    
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.25rem;
        min-height: 4em;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-mockup {
        max-width: 70%;
    }
    
    .hero-image::before,
    .hero-image::after {
        display: none;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-logo img {
        max-width: 120px;
    }
    
    .channel-list {
        grid-template-columns: 1fr;
    }
    
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leasing-services {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .frequency-tools {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .top-bar-inner {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .top-bar-text span {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
        min-height: 3.5em;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.7rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .channel-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo img {
        max-width: 100px;
    }
    
    .top-bar-social .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }
}

/*--------------------------------------------------------------
Reduced Motion (accessibility)
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-title .typed-line {
        /* Ensure text still shows if animation is disabled */
        visibility: visible;
    }
    
    .hero-title .cursor {
        display: none;
    }
}

/*--------------------------------------------------------------
OTT Logo — Pulsing Hero Visual
--------------------------------------------------------------*/
.hero-image--ott {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ott-logo-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

/* The logo itself */
.ott-logo {
    position: relative;
    z-index: 2;
    width: 78%;
    height: auto;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 18px 40px rgba(107, 30, 46, 0.28));
    animation: ott-float 6s ease-in-out infinite;
    will-change: transform;
}

/* Pulsing rings behind the logo */
.ott-pulse-ring {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(107, 30, 46, 0.15) 45%, transparent 70%);
    animation: ott-pulse 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 1;
    pointer-events: none;
    will-change: transform, opacity;
}

.ott-pulse-ring--delay {
    animation-delay: 1.7s;
    background: radial-gradient(circle, rgba(107, 30, 46, 0.35) 0%, rgba(212, 175, 55, 0.12) 45%, transparent 70%);
}

/* Gentle bobbing motion */
@keyframes ott-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-14px) scale(1.015); }
}

/* Expanding halo rings */
@keyframes ott-pulse {
    0%   { transform: scale(0.85); opacity: 0.9; }
    70%  { transform: scale(1.45); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* Responsive tuning */
@media (max-width: 1024px) {
    .ott-logo-wrap { max-width: 380px; }
}

@media (max-width: 768px) {
    .hero-image--ott {
        margin-top: 2rem;
    }
    .ott-logo-wrap {
        max-width: 300px;
    }
    .ott-logo {
        width: 82%;
    }
    /* Slow the pulses slightly on mobile to save CPU */
    .ott-pulse-ring { animation-duration: 4s; }
}

@media (max-width: 480px) {
    .ott-logo-wrap { max-width: 240px; }
}