/* ============================================================================
   TSC MEDIA TEMPLATE CSS
   Organised and clean version with all pricing card styles
   ============================================================================ */

/* ============================================================================
   BASIC TYPOGRAPHY
   ============================================================================ */

/* Paragraph Spacing */
body p {
    margin: 0;
    padding: 0;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
}

h1 { font-size: 28px; }
h2 { font-size: 26px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

/* Bullet Alignment */
ul, ol {
    list-style-position: outside;
    list-style-type: disc;
    margin-left: 0;
    padding-left: 1.2em;
}

li {
    padding-left: 0;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.divflex {
    display: flex;
    flex-direction: column;
}

/* Hide Read More Extra Text (for Page Speed Insights) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

/* ============================================================================
   BLOG LAYOUTS
   ============================================================================ */

/* Blog Layout for Portfolio Only */
.itemid-250 .tck-blog .item-image img {
    float: left;
    width: 230px;
    padding-right: 20px;
}

.itemid-250 .tck-blog .tck-article {
    display: block;
    border-bottom: #2da0ce 0.5px solid;
    margin-bottom: 10px;
    text-align: left;
}

/* Blog Layout for Testimonials Only */
.itemid-122 .tck-blog .item-image img {
    float: left;
    width: 230px;
    padding-right: 20px;
}

.itemid-122 .tck-blog .tck-article {
    display: block;
    border-bottom: #2da0ce 0.5px solid;
    margin-bottom: 10px;
    text-align: left;
}

/* ============================================================================
   BOXED ELEMENTS
   ============================================================================ */

/* Boxed Div */
.boxedborder {
    background-color: #fff;
    color: #666;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Button to Div Bottom */
.bottomdiv {
    display: flex;
    flex-direction: column;
}

.buttondiv {
    margin-top: auto;
}

/* ============================================================================
   PAGE HEADERS
   ============================================================================ */

/* Styles for the menu heading */
.page-header h1:not([itemprop]) {
    display: flex;
    align-items: center;
    color: #555555;
    text-transform: uppercase;
    padding-bottom: 1%;
}

.page-header h1:not([itemprop])::before,
.page-header h1:not([itemprop])::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #d3d3d3;
}

.page-header h1:not([itemprop])::before {
    margin-right: 10px;
}

.page-header h1:not([itemprop])::after {
    margin-left: 10px;
}

/* Styled Header to Use Anywhere like Page Heading */
.styled-header {
    display: flex;
    align-items: center;
    color: #555555;
    text-transform: uppercase;
}

.styled-header::before,
.styled-header::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #d3d3d3;
}

.styled-header::before {
    margin-right: 10px;
}

.styled-header::after {
    margin-left: 10px;
}

/* Package Headings */
.packageheading {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #96c832;
}

.packageheading h1,
.packageheading h2,
.packageheading h3,
.packageheading h4,
.packageheading h5,
.packageheading h6,
.packageheading p,
.packageheading span,
.packageheading a {
    color: #ffffff !important;
}

/* Shift Anchors for Sticky Heading */
a[id] {
    display: block;
    position: relative;
    top: -160px;
    visibility: hidden;
}

/* ============================================================================
   HOSTING PRICING CARDS (Original)
   ============================================================================ */

.pricing-card {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: #555555;
    color: #ffffff;
}

.pricing-card:hover h3,
.pricing-card:hover p,
.pricing-card:hover ul li {
    color: #ffffff;
}

/* Fix button visibility on hover */
.pricing-card:hover .btn {
    background-color: #96c832;
    color: #ffffff;
    border-color: #96c832;
}

.pricing-card h3 {
    color: #ffffff;
    background-color: #2da0ce;
    margin: -20px -20px 10px -20px;
    padding: 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.pricing-card p strong {
    font-size: 32px;
    color: #e66a00;
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    position: relative;
    display: inline-block;
}

.pricing-card p strong::before {
    content: "R";
    font-size: 16px;
    vertical-align: super;
    margin-right: 5px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card ul li {
    position: relative;
    padding-left: 20px;
    color: #555555;
    transition: color 0.3s ease;
}

.pricing-card ul li::before {
    content: "✔";
    color: #96c832;
    position: absolute;
    left: 0;
}

.pricing-card:hover ul li::before {
    color: #ffffff;
}

/* ============================================================================
   WEB DESIGN PRICING CARDS
   ============================================================================ */

.web-pricing-card {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.web-pricing-card:hover {
    background: #555555;
    color: #ffffff;
}

.web-pricing-card:hover h3,
.web-pricing-card:hover p,
.web-pricing-card:hover ul li {
    color: #ffffff;
}

/* Fix button visibility on hover */
.web-pricing-card:hover .btn {
    background-color: #96c832;
    color: #ffffff;
    border-color: #96c832;
}

.web-pricing-card h3 {
    color: #ffffff;
    background-color: #2da0ce;
    margin: -20px -20px 10px -20px;
    padding: 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 22px;
}

.web-pricing-card p strong {
    font-size: 32px;
    color: #e66a00;
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    position: relative;
    display: inline-block;
}

.web-pricing-card p strong::before {
    content: "R";
    font-size: 16px;
    vertical-align: super;
    margin-right: 5px;
}

.web-pricing-card ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
    margin: 15px 0;
}

.web-pricing-card ul li {
    position: relative;
    padding-left: 20px;
    color: #555555;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.web-pricing-card ul li::before {
    content: "✓";
    color: #96c832;
    position: absolute;
    left: 0;
}

.web-pricing-card:hover ul li::before {
    color: #ffffff;
}

/* ============================================================================
   ECOMMERCE SHOP PRICING CARDS
   ============================================================================ */

.shop-pricing-card {
    background: #ffffff;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.shop-pricing-card:hover {
    background: #555555;
    color: #ffffff;
}

.shop-pricing-card:hover h3,
.shop-pricing-card:hover p,
.shop-pricing-card:hover ul li {
    color: #ffffff;
}

/* Fix button visibility on hover */
.shop-pricing-card:hover .btn {
    background-color: #96c832;
    color: #ffffff;
    border-color: #96c832;
}

.shop-pricing-card h3 {
    color: #ffffff;
    background-color: #2da0ce;
    margin: -20px -20px 10px -20px;
    padding: 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 22px;
}

.shop-pricing-card p strong {
    font-size: 32px;
    color: #e66a00;
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
    position: relative;
    display: inline-block;
}

.shop-pricing-card p strong::before {
    content: "R";
    font-size: 16px;
    vertical-align: super;
    margin-right: 5px;
}

.shop-pricing-card ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
    margin: 15px 0;
}

.shop-pricing-card ul li {
    position: relative;
    padding-left: 20px;
    color: #555555;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.shop-pricing-card ul li::before {
    content: "✓";
    color: #96c832;
    position: absolute;
    left: 0;
}

.shop-pricing-card:hover ul li::before {
    color: #ffffff;
}

/* ============================================================================
   CONTENT DESCRIPTION BOXES
   ============================================================================ */

.content-description {
    background: #f9f9f9;
    border-left: 4px solid #96c832;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.6;
}

.content-description strong {
    color: #2da0ce;
}

/* ============================================================================
   ECOMMERCE COMPARISON TABLE
   ============================================================================ */

.shop-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.shop-comparison thead {
    background-color: #2da0ce;
    color: #ffffff;
}

.shop-comparison th {
    padding: 15px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    border: 1px solid #E6E6E6;
}

.shop-comparison td {
    padding: 12px 15px;
    border: 1px solid #E6E6E6;
    text-align: center;
}

.shop-comparison tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.shop-comparison tbody tr:hover {
    background-color: #f0f0f0;
}

.shop-comparison .feature-name {
    text-align: left;
    font-weight: 500;
    color: #555555;
}

.shop-comparison .category-header {
    background-color: #96c832;
    color: #ffffff;
    font-weight: bold;
    text-align: left;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 14px;
}

.shop-comparison .check-yes {
    color: #96c832;
    font-size: 20px;
}

.shop-comparison .check-no {
    color: #cccccc;
    font-size: 20px;
}

/* == START RSForm Required Asterisk == */
.formRed,
.rsform-required,
strong.formRequired {
    color: #e66a00 !important;
    font-weight: normal !important;
}
/* == END RSForm Required Asterisk == */

/* == START RSForm Labels Bold == */
label.col-form-label,
.col-form-label,
span.form-label,
.form-label {
    font-weight: bold !important;
}
/* == END RSForm Labels Bold == */

/* ============================================================================
   END OF CSS
   ============================================================================ */