:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --secondary-color: #6c757d;
    --secondary-hover: #5c636a;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent-warning: #f59e0b;
    --accent-premium: #8b5cf6;
    --border-color: #334155;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 15px rgba(139, 92, 246, 0.4);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 70px;
    /* Increased size significantly */
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 576px) {
    .brand-logo {
        max-width: 180px;
    }
}

.brand-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

.nav.active {
    display: block;
}

@media (min-width: 992px) {
    .nav {
        display: block;
        position: static;
        width: auto;
        background-color: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 992px) {
    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #38bdf8;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: static;
    background-color: transparent;
    min-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.dropdown.active .dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bg-card);
        min-width: 260px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding: 0.5rem 0;
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 101;
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 0.95rem;
}

.dropdown-menu li a i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding-left: 2rem;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    display: block;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding-bottom: 4rem;
}

/* Search Section */
.search-section {
    padding: 3rem 0 1rem 0;
    text-align: center;
    background: radial-gradient(circle at center, var(--bg-card) 0%, var(--bg-darker) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.search-box-inline {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.search-box-inline input {
    width: 100%;
    padding: 1rem 2.5rem 1rem 2.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: rgba(30, 41, 59, 0.7);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box-inline input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.search-box-inline input:not(:placeholder-shown)+.search-clear {
    opacity: 1;
    visibility: visible;
}

/* Grid & Categories Section */
.grid-section {
    padding: 2rem 0;
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.category-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.category-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.channels-grid {
    display: grid;
    /* Adjusted minmax size to fit 6 columns gracefully on larger screens */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.1);
}

.channel-image-container {
    height: 120px;
    background-color: #2a3b54;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.channel-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.channel-card:hover .channel-image-container img {
    transform: scale(1.05);
}

.channel-icon-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.channel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.channel-badge.religion {
    background-color: rgba(139, 92, 246, 0.8);
}

.channel-badge.premium {
    background-color: rgba(245, 158, 11, 0.8);
}

.channel-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.channel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.channel-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.channel-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: auto;
    transition: var(--transition);
}

.channel-card:hover .channel-action {
    gap: 0.8rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem 6rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.2rem;
}

.provider-info {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Streaming Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-darker) 0%, #080f1e 100%);
    border-top: 1px solid var(--border-color);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.badge {
    display: inline-block;
    background-color: rgba(13, 110, 253, 0.2);
    color: #38bdf8;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Case Study Section */
.services-case-study {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.case-study-content {
    flex: 1 1 500px;
    padding: 3rem 4rem;
}

.case-badge {
    display: inline-block;
    background-color: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.case-study-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.case-study-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    width: auto;
    padding: 1rem 2rem;
}

.case-study-image {
    flex: 1 1 400px;
    min-height: 400px;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-left: 1px solid var(--border-color);
}

/* Animated Illustration */
.server-rack-illustration {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.broadcast-icon {
    font-size: 4rem;
    color: #a78bfa;
    z-index: 2;
}

.signal-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.signal-waves span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

.signal-waves span:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.signal-waves span:nth-child(2) {
    width: 150%;
    height: 150%;
    animation-delay: 0.6s;
}

.signal-waves span:nth-child(3) {
    width: 200%;
    height: 200%;
    animation-delay: 1.2s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .case-study-content {
        padding: 3rem 2rem;
    }

    .case-study-image {
        min-height: 300px;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

/* Payment Portal Section */
.payment-section {
    padding: 3rem 0;
    /* Reduced from 6rem */
    min-height: calc(100vh - 80px - 100px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, var(--bg-darker) 0%, #030a16 100%);
}

.payment-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.payment-info {
    flex: 1 1 450px;
    padding: 3rem;
    /* Reduced from 4rem */
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(13, 110, 253, 0.1) 100%);
    position: relative;
}

.payment-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.payment-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pay-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.pay-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    background-color: rgba(13, 110, 253, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.payment-illustration {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 12rem;
    color: rgba(13, 110, 253, 0.05);
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Payment Form */
.payment-form-container {
    flex: 1 1 400px;
    padding: 3rem 2.5rem;
    /* Reduced from 4rem 3rem */
    background-color: rgba(15, 23, 42, 0.5);
    border-left: 1px solid var(--border-color);
}

.form-header {
    margin-bottom: 1.8rem;
    /* Reduced from 2.5rem */
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.invoice-form .form-group {
    margin-bottom: 1.5rem;
    /* Reduced from 1.8rem */
    position: relative;
    display: flex;
    flex-direction: column;
}

.invoice-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.invoice-form input,
.invoice-form select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
}

.invoice-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23cbd5e1' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.invoice-form select option {
    background-color: var(--bg-darker);
    color: var(--text-primary);
}

.invoice-form input:focus,
.invoice-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.form-icon {
    position: absolute;
    left: 1rem;
    bottom: 1.15rem;
    /* Centered visually with the input text */
    color: var(--text-secondary);
    pointer-events: none;
}

.invoice-form input:focus~.form-icon,
.invoice-form select:focus~.form-icon {
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 1rem;
}


@media (max-width: 992px) {
    .payment-info {
        padding: 2.5rem 2rem;
    }

    .payment-form-container {
        padding: 2.5rem 2rem;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal.premium-bg {
    background: linear-gradient(145deg, var(--bg-card) 0%, #2a164b 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
}

.modal-icon.warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-warning);
}

.modal-icon.premium {
    background-color: rgba(139, 92, 246, 0.2);
    color: var(--accent-premium);
    box-shadow: var(--shadow-glow);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-10deg);
    background-color: #128C7E;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Utilities */
@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

    .modal {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Search Clear Restored */
.search-clear {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-clear:hover {
    color: var(--text-primary);
}