/* css */



:root {
    --bg-color: #1f1f1f;
    --text-color: #ffffff;
    --primary: #d92525;
    --primary-rgb: 217, 37, 37;
    --primary-light: #ff3333;
    --primary-hover: #bd1f1f;
    --border: #333333;
    --border-light: #555555;
    --border-focus: #777777;
    --muted: #a3a3a3;
    --dark-text: #777777;
    --font-family: 'Inter', 'Segoe UI', sans-serif;
}

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

details,
details:focus,
details:active,
button,
button:focus,
button:active,
a,
a:focus,
a:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    /* for iOS/Android */
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

input:focus-visible {
    outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* Your input background */
    -webkit-text-fill-color: #000000 !important;
    /* Text color */
    transition: background-color 9999s ease-in-out 0s;
    caret-color: #696969;
}

.newsletter-form .wpcf7-form-control-wrap .wpcf7-email:-webkit-autofill,
.newsletter-form .wpcf7-form-control-wrap .wpcf7-email:-webkit-autofill:hover,
.newsletter-form .wpcf7-form-control-wrap .wpcf7-email:-webkit-autofill:focus,
input.search-field:-webkit-autofill,
input.search-field:-webkit-autofill:hover,
input.search-field:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    transition: background-color 9999s ease-in-out 0s;
    caret-color: #fff;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

a,
button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
}


/* Fix boxed layout from Hello Elementor */
body:not([class*="elementor-page-"]) .site-main,
.site-header:not(.dynamic-header),
.site-footer:not(.dynamic-footer),
.site-footer .footer-inner {
    width: 100% !important;
    max-width: none !important;
}


.site-top-header .top-header-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 0 !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.site-top-header .top-header-wrap p,
.site-top-header .top-header-wrap a {
    display: inline-block !important;
    margin: 0 !important;
    line-height: 1 !important;
}




/* --- Global / PK CSS Start --- */

.pk-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-section {
    width: 100%;
}



.site-footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
}

.footer-top-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-top-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 100px;
    transform: translateY(-50%) translate3d(0, 0, 0);
    background-image:
        url("data:image/svg+xml,%3Csvg width='800' height='100' viewBox='0 0 800 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50C40 10 60 90 100 50C140 10 160 90 200 50C240 10 260 90 300 50C340 10 360 90 400 50C440 10 460 90 500 50C540 10 560 90 600 50C640 10 660 90 700 50C740 10 760 90 800 50' stroke='%23d92525' stroke-width='1.5' stroke-opacity='0.4'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='800' height='100' viewBox='0 0 800 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50C50 90 70 10 120 50C170 90 190 10 240 50C290 90 310 10 360 50C410 90 430 10 480 50C530 90 550 10 600 50C650 90 670 10 720 50C770 90 790 10 840 50' stroke='%23d92525' stroke-width='1' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat-x, repeat-x;
    background-position: 0 center, 0 center;
    z-index: 1;
    opacity: 0.6;
    will-change: background-position;
    animation: wave-move-opp 40s linear infinite;
}

@keyframes wave-move-opp {
    0% {
        background-position-x: 0px, 0px;
    }

    100% {
        background-position-x: -800px, 800px;
    }
}

.footer-top-content {
    display: flex;
    align-items: center;
    gap: 60px;
    z-index: 2;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-phone-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-icon-wrap {
    width: 75px;
    height: 75px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-light);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
    animation: phone-pulse 2s infinite;
}

.phone-icon-wrap svg {
    animation: phone-ring 2s infinite;
}

@keyframes phone-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7);
        transform: scale(0.95);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
        transform: scale(0.95);
    }
}

@keyframes phone-ring {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(15deg);
    }

    15% {
        transform: rotate(-10deg);
    }

    25% {
        transform: rotate(15deg);
    }

    35% {
        transform: rotate(-10deg);
    }

    45% {
        transform: rotate(0deg);
    }
}

.phone-text-wrap {
    display: flex;
    flex-direction: column;
}

.phone-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.phone-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: var(--text-color);
    text-decoration: none;
}

.phone-subtext {
    color: var(--muted);
    font-size: 15px;
    margin-top: 8px;
}

.footer-email-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: 1px solid #666;
    border-radius: 40px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s, border-color 0.3s;
}

.footer-email-button:hover {
    background-color: #333;
    border-color: var(--dark-text);
}

.footer-main {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-about {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}








.hero-search-form,
.search-input-group {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.hero-search-input:focus,
.hero-search-input:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}



.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #333;
    border-color: var(--border-focus);
}

.footer-col-2 {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding-left: 40px;
    padding-right: 20px;
}

.footer-col-3 {
    padding-left: 20px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 18px;
}

.footer-menu a {
    color: #D1D1D1;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--text-color);
}

.footer-menu a:hover svg {
    stroke: var(--text-color);
}

.newsletter-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form .wpcf7,
.newsletter-form .wpcf7-form-control-wrap,
.newsletter-form form {
    width: 100%;
}

.newsletter-form .wpcf7-form-control-wrap .wpcf7-email,
.newsletter-input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-light);
    border-right: none;
    padding: 14px 18px;
    color: var(--text-color);
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    width: 100%;
}










.newsletter-form .wpcf7-form-control-wrap .wpcf7-email:focus,
.newsletter-input:focus {
    border-color: var(--border-focus);
}

.newsletter-form .wpcf7-spinner,
.newsletter-form br {
    display: none;
}

.newsletter-form p,
.newsletter-form label {
    display: inline-flex;
    width: 100%;
}

.newsletter-form .wpcf7-submit,
.newsletter-btn {
    background: var(--primary);
    color: var(--text-color);
    border: none;
    padding: 14px 24px;
    border-radius: 0 6px 6px 0;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    height: 46px;
	min-width: 150px;
}

.newsletter-form .wpcf7-not-valid-tip {
    margin: 5px 0 0 !important;
    font-size: 12px;
}

.newsletter-form .wpcf7-response-output {
    margin: 5px 0 !important;
    font-size: 12px;
    padding: 5px !important;
}

.newsletter-form .wpcf7-submit:hover,
.newsletter-btn:hover {
    background: var(--primary-hover);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 20px 4px;
    color: var(--dark-text);
    font-size: 14px;
    text-align: center;
}

.footer-bottom a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #aaa;
}

@media (max-width: 1200px) {
    /* .footer-col-1 ,
    .footer-col-2,
    .footer-col-3 {
        padding-left: 20px;
    } */

    .footer-col-3 {
        max-width: 400px;
    }

    .footer-main {
        padding: 70px 0px 50px;
    }

    .footer-bottom {
        padding: 20px 0px 4px;
    }
}

@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col-2 {
        border-right: none;
    }

    .footer-col-3 {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border);
        padding-top: 40px;
        padding-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-top-content {
        display: block;
        margin: 0 auto;
    }

    .footer-phone-section {
        display: block;
    }

    .phone-icon-wrap {
        margin: 0 auto;
    }

    .phone-text-wrap {
        margin: 10px 0;
    }

    .phone-number {
        font-size: 32px;
    }

    .footer-top-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 20px 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0px 25px;
    }

    .footer-col-2 {
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-top: 25px;
        border-top: 1px solid var(--border);
    }

    .footer-menu li:last-child {
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-heading {
        margin-bottom: 10px;
    }
}

/* --- Global / PK CSS End --- */

/* --- Header CSS Start --- */
.site-top-header{
    background-color: var(--primary);
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
}
.site-top-header .top-header-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
}
.site-top-header .top-header-wrap a{
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    text-decoration: underline;
}
.site-header {
    background-color: var(--bg-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 800;
}

.header-logo .logo-text {
    letter-spacing: -0.5px;
}

.header-logo .text-red {
    color: var(--primary);
}

.header-search {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.search-form:focus-within {
    border-color: var(--border-light);
}

.search-field {
    flex: 1;
    background: transparent !important;
    border: none;
    color: var(--text-color) !important;
    padding: 10px 0;
    font-size: 14px;
    outline: none;
}

.search-field::placeholder {
    color: var(--dark-text);

}

.search-submit {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 10px;
    transition: color 0.3s;
}

.search-submit:hover {
    color: var(--text-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-nav {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.header-nav li a:hover {
    color: var(--primary);
}

.header-btn {
    background-color: var(--primary);
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
    white-space: nowrap;
}

.header-btn:hover {
    background-color: var(--primary-hover);
}

/* Mobile Menu Toggle Styles */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-menu-close {
    display: none;
    cursor: pointer;
    color: var(--text-color);
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--border);
    border-radius: 50%;
    padding: 5px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .header-container {
        gap: 15px;
    }

    .header-logo {
        order: 1;
    }

    .header-search {
        order: 2;
        flex: 1;
        max-width: none;
    }

    .mobile-menu-toggle {
        order: 3;
        display: block;
        margin-left: 10px;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 40px;
        box-sizing: border-box;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .header-right.active {
        right: 0;
    }

    .mobile-menu-close {
        display: flex;
    }

    .header-nav {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        align-items: flex-start;
    }

    .header-nav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
        text-align: left;
    }

    .header-nav li a {
        display: block;
    }

    .header-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 15px 0;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        flex: 1 1 100%;
        margin-top: 5px;
    }

    .mobile-menu-toggle {
        order: 2;
        margin-left: 0;
    }
}

/* --- Header CSS End --- */


/* --- Hero Section CSS Start --- */
.hero-section {
    background-color: #fff9f9;
    color: #111111;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family);
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Subtle dot pattern background on the left */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 550px;
    height: 120%;
    transform: translateY(-50%);
    background-image: radial-gradient(rgba(217, 37, 37, 0.2) 2px, transparent 2px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at left center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at left center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(217, 37, 37, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.hero-section .waves {
    display: flex;
    align-items: center;
    height: 200px;
    z-index: 1;
    opacity: 0.7;
}

.hero-section .waves.left {
    margin-right: -70px;
}

.hero-section .waves.right {
    margin-left: -70px;
}

.hero-section .bar {
    width: 2px;
    /* Red gradient matching the reference */
    background: linear-gradient(to top, rgba(255, 20, 20, 0.1), rgba(255, 30, 30, 0.8) 50%, rgba(255, 20, 20, 0.1));
    border-radius: 2px;
    margin: 0 3px;
    transform-origin: center;
    animation: equalize ease-in-out infinite alternate;
    box-shadow: 0 0 5px rgba(255, 50, 50, 0.3);
}

@keyframes equalize {
    0% {
        transform: scaleY(0.3);
        opacity: 0.6;
    }

    100% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #111111;
    letter-spacing: -1px;
    margin-top: 0;
}

.hero-title .text-red {
    color: var(--primary);
}

.hero-desc {
    font-size: 18px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-search-wrap {
    max-width: 600px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    padding: 0;
}

.hero-search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 15px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 10px;
    font-size: 15px;
    color: #333;
}

.hero-search-input::placeholder {
    color: #999;
}

.hero-search-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s, transform 0.2s;
}

.hero-search-btn:hover {
    background-color: var(--primary-hover);
    /* transform: translateY(-2px); */
}

.hero-image-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        margin-bottom: 20px;
    }
}

@media (max-width: 1023px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .hero-search-input {
        padding: 10px 10px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-search-form {
        flex-direction: column;
        gap: 10px;
    }

    .hero-search-wrap {
        background: transparent;
        box-shadow: none;
        border: none;
        margin: 0 auto;
    }

    .search-input-group {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        width: 100%;
        padding: 5px 15px;
    }

    .search-input-group .search-icon {
        height: 17px;
    }

    .hero-search-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-section::before {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-desc {
        margin: 0 auto 15px;
    }

    .hero-section {
        padding: 40px 0 0;
    }

    .hero-glow {
        width: 300px;
        height: 300px;
    }

    .hero-image-wrap {
        width: 90%;
    }
}

/* --- Hero Section CSS End --- */
/* --- Data Lists Section CSS Start --- */
.data-list-section {
    font-family: var(--font-family);
    margin-top: 40px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.list-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon.red-circle {
    background-color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111111;
    margin: 0;
}

.view-all-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.view-all-link:hover {
    color: var(--primary-hover);
}

.list-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.list-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.list-table {
    display: flex;
    flex-direction: column;
}

.table-header {
    display: grid;
    grid-template-columns: 15% 40% 20% 25%;
    padding: 15px 25px;
    border-bottom: 1px solid #eaeaea;
    font-size: 12px;
    font-weight: 700;
    color: #777;
    letter-spacing: 1px;
}

.categories-table .table-header {
    grid-template-columns: 15% 50% 35%;
}

.table-row {
    display: grid;
    grid-template-columns: 15% 40% 20% 25%;
    padding: 20px 25px;
    border-bottom: 1px solid #f2f2f2;
    align-items: center;
}

.categories-table .table-row {
    grid-template-columns: 15% 45% 40%;
}

.table-row:last-child {
    border-bottom: none;
}

.col-date,
.col-advertiser,
.col-category {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.col-date strong {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
}

.col-date span {
    font-size: 11px;
    color: #777;
    font-weight: 600;
    margin-top: 3px;
}

.col-advertiser strong,
.col-category strong {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.col-advertiser span,
.col-category span {
    font-size: 13px;
    color: #777;
    margin-top: 3px;
}

.col-station {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.col-action {
    display: flex;
    justify-content: flex-end;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-phone svg {
    margin-right: 8px;
}

.btn-phone.red {
    background: var(--primary);
    color: #fff;
}

.btn-phone.red:hover {
    background: var(--primary-hover);
}

.btn-phone.outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-phone.outline:hover,
.btn-phone.outline-revealed {
    background: rgba(217, 37, 37, 0.05);
}

.btn-phone.black {
    background: #111;
    color: #fff;
}

.btn-phone.black:hover {
    background: var(--border);
}

@media (max-width: 1024px) {
    .list-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .list-cards-wrapper .list-card:first-child {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom: none;
    }
    .list-cards-wrapper .list-card:last-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .list-cards-wrapper .list-card:last-child .table-header {
        display: none;
    }
}

@media (max-width: 767px) {
    .icon.red-circle {
        display: none;
    }

    .table-header {
        display: none;
    }

    .table-row,
    .categories-table .table-row {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }

    .col-date {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .col-action {
        justify-content: flex-start !important;
    }
}

/* --- Data Lists Section CSS End --- */
/* --- Radio Stations Archive Page CSS --- */
.stations-archive-main {
    background-color: #ffffff;
    padding-bottom: 50px;
    /* min-height: 80vh; */
    font-family: var(--font-family);
}

.stations-page-header {
    background-color: #fcfaf8;
    padding: 60px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f2f2f2;
    background-image: url('http://radioadsearch.com/wp-content/uploads/2026/06/banner-inner.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.stations-page-header .header-content {
    position: relative;
    z-index: 2;
}

.header-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 20px;
}

.header-title {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1;
}

.header-title-bar {
    width: 6px;
    height: 40px;
    background-color: var(--primary);
    margin-right: 15px;
    border-radius: 3px;
}

.header-desc {
    font-size: 16px;
    color: #555;
    margin-left: 20px;
}

.header-bg-svg {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 120%;
    opacity: 0.05;
    z-index: 1;
}

.stations-grid-container {
    padding: 0 20px;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .stations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stations-page-header {
        background-image: url('http://radioadsearch.com/wp-content/uploads/2026/06/banner-inner-mobile.png');
        background-position: center;
        background-size: cover;
        margin-bottom: 40px;
    }

    .header-title {
        font-size: 34px;
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }
}

.station-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 25px 25px 20px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease-in-out;
}

.station-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card-left-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary);
}

.card-top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.card-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(217, 37, 37, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.card-freq {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}

.card-callsign {
    color: #111;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.card-fullname {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

.card-ads-count {
    text-align: right;
    padding-top: 5px;
}

.count-num {
    font-size: 20px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.count-label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    margin-top: 3px;
    letter-spacing: 1px;
}

.card-view-link {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.card-view-link:hover {
    color: var(--primary-hover);
}


/* --- Taxonomy Station Page & Layout Utilities --- */
.tax-station-main {
    background-color: #f5f4f0;
    /* padding-bottom: 80px; */
    /* min-height: 80vh; */
}

.tax-station-main .tax-back-link svg {
    transform: rotateY(180deg);
}

.tax-station-header {
    background-color: #f5f4f0;
    padding: 60px 0 40px;
    border-bottom: 2px solid #111;
}

.tax-back-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 5px;
}

.tax-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.tax-title-bar {
    width: 4px;
    height: 35px;
    background-color: var(--primary);
    margin-right: 15px;
    border-radius: 2px;
}

.tax-title {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: -1px;
    display: flex;
    gap: 15px;
    align-items: baseline;
}

.tax-title-callsign {
    font-weight: 800;
    font-size: 42px;
}

.tax-count {
    color: #555;
    font-size: 16px;
    margin-left: 19px;
}

.tax-list-container {
    padding: 50px 20px;
}

/* Grid Layouts for Data Lists */
.grid-col-3-tax {
    grid-template-columns: 15% 55% 30%;
}

.grid-col-4-home {
    /* grid-template-columns: 15% 40% 20% 25%; */
    grid-template-columns: 15% 50% 35%;
}

/* Utilities */
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.justify-end {
    justify-content: flex-end;
}

.btn-auto {
    width: auto;
    padding: 10px 20px;
}

.btn-auto-sm {
    width: auto;
    padding: 10px 15px;
}

.col-station-text {
    /* text-align: center; */
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.empty-row-text {
    grid-column: 1/-1;
    text-align: center;
    padding: 20px;
    color: #999;
}

.list-section-top {
    padding: 20px;
}

.list-section-bottom {
    padding: 20px 20px 60px;
}

@media (max-width: 1199px) {
    .grid-col-4-home {
        grid-template-columns: 15% 45% 40%;
    }
}

@media (max-width: 767px) {

    .grid-col-3-tax,
    .grid-col-4-home {
        grid-template-columns: 1fr;
    }

    .tax-title-callsign,
    .tax-title {
        font-size: 28px;
    }
	.list-section-bottom{
		padding-top: 0;
	}

    .list-section-top {
        padding-top: 0px;
        padding-bottom: 0px;
    }
}


.hero-placeholder-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: rgba(217, 37, 37, 0.05);
    border: 2px dashed rgba(217, 37, 37, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
}

.svg-icon-mr {
    margin-right: 6px;
}


/* contact Section */
.custom-contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
}

/* Left Column (Form) */
.custom-contact-section .custom-contact-form {
    flex: 1;
    min-width: 300px;
}

.custom-contact-section .form-inner-wrapper {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.custom-contact-section .form-inner-wrapper .form-group {
    margin-bottom: 25px;
}

.custom-contact-section .form-inner-wrapper label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 0;
}

.custom-contact-form .form-inner-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* CF7 Inputs */
.custom-contact-section .form-inner-wrapper input[type="text"],
.custom-contact-section .form-inner-wrapper input[type="email"],
.custom-contact-section .form-inner-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--dark-text);
    border-radius: 8px;
    background-color: var(--text-color);
    box-sizing: border-box;
    font-size: 14px;
    color: var(--bg-color);
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.custom-contact-section .form-inner-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

.custom-contact-section .form-inner-wrapper input:focus,
.custom-contact-section .form-inner-wrapper textarea:focus {
    /* background-color: var(--primary-hover); */
    border: 1px solid var(--border);
}

.custom-contact-form .wpcf7-response-output {
    font-size: 14px;
    margin: 10px 0 !important;
    text-align: center;
}

/* CF7 Submit Button */
.custom-contact-section .form-inner-wrapper input[type="submit"] {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 0;
}

.custom-contact-form .form-inner-wrapper .wpcf7-spinner {
    position: absolute;
    right: 53%;
    display: none;
}

.custom-contact-form .form-inner-wrapper .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-weight: 600;
}

.custom-contact-section .form-inner-wrapper input[type="submit"]:hover {
    background-color: var(--primary-hover);
    /* Darker red on hover */
}

/* Fix for Contact Form 7 generated span wrappers */
.custom-contact-section .form-inner-wrapper .wpcf7-form-control-wrap {
    display: block;
}

/* Right Column (Info) */
.custom-contact-info {
    flex: 1;
    min-width: 300px;
    padding-top: 30px;
}

.custom-contact-info h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 100%;
    color: #111111;
    margin-top: 0;
    margin-bottom: 15px;
}

.custom-contact-info p {
    font-size: 16px;
    line-height: 24px;
    color: #777;
    margin-bottom: 40px;
}

/* Email Box */
.custom-contact-section .email-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.custom-contact-section .email-details:last-child {
    margin-bottom: 0;
}

.custom-contact-section .email-icon-box {
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-contact-section.email-icon-box svg {
    width: 22px;
    height: 22px;
}

.custom-contact-section .email-text-box {
    display: flex;
    flex-direction: column;
}

.custom-contact-section .email-text-box .email-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 2px;
}

.custom-contact-section .email-text-box a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-contact-section .email-text-box a:hover {
    color: var(--primary);
}

@media(max-width: 1024px) {
    .custom-contact-section {
        gap: 30px;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .custom-contact-section .form-inner-wrapper {
        padding: 20px;
    }

    .custom-contact-section {
        flex-direction: column;
    }

    .custom-contact-section .custom-contact-info {
        padding-top: 0;
    }
}

.membership {
    padding: 0 0 70px;
}

.membership .membership-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

/* Left */
.membership .features h2,
.membership .pricing-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #111111;
    margin: 0 0 20px;
}

.pricing-card .header-btn {
    display: inline-block;
    width: auto !important;
}

.membership .features ul {
    list-style: none;
}

.membership .features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 18px;
    color: #555555;
}

.membership .features li:last-child {
    margin-bottom: 0;
}

.membership .icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Right Card */
.membership .pricing-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    border-radius: 8px;
}

.membership .description {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.membership .pricing-card hr {
    border: none;
    border-top: 2px solid #333;
    margin: 25px 0;
}

.membership .label {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #8d8d8d;
    font-weight: 700;
    margin-bottom: 12px;
}

.membership .pricing-card h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #111111;
    letter-spacing: -1px;
}

.membership .sub-text {
    color: #555555;
    margin-bottom: 35px;
}

/* Tablet */
@media (max-width:991px) {
    .membership .membership-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .membership .features h2 {
        font-size: 36px;
    }

    .membership .pricing-card h1 {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width:767px) {
    .membership .membership {
        padding: 50px 15px;
    }

    .membership {
        padding: 0 0 40px;
    }

    .membership .features h2 {
        font-size: 30px;
    }

    .membership .features li {
        font-size: 16px;
        gap: 12px;
        margin-bottom: 15px;
    }

    .membership .icon {
        font-size: 12px;
    }

    .membership .pricing-card {
        padding: 25px;
    }

    .membership .pricing-card h3 {
        font-size: 26px;
    }

    .membership .pricing-card h1 {
        font-size: 40px;
    }

    .membership .sub-text {
        margin-bottom: 15px;
    }
}