/*
Theme Name: Visa Theme
Theme URI: https://example.com/visatheme
Author: VisaTheme Dev
Author URI: https://example.com
Description: A professional WordPress theme for visa and attestation services companies. Features full admin panel control, custom post types for services/testimonials/FAQs, and a companion data import plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visatheme
Tags: visa, services, business, custom-menu, custom-logo, featured-images, theme-options
*/

/* ============================================
   CSS VARIABLES / DESIGN SYSTEM
   ============================================ */
:root {
    /* Colors - matching HNM Consultancy Services logo */
    --primary: #F5A623;
    --primary-dark: #D4891A;
    --primary-light: #FFF8E7;
    --secondary: #1A1A1A;
    --dark: #111111;
    --dark-alt: #0D0D0D;
    --gray: #555555;
    --gray-light: #999999;
    --light: #f5f5f5;
    --lighter: #f9f9f9;
    --white: #ffffff;
    --border: #e0e0e0;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --dark-blue: #111111;

    /* Typography */
    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-size-base: 14px;
    --font-size-sm: 13px;
    --font-size-lg: 16px;
    --font-size-xl: 22px;
    --font-size-xxl: 32px;
    --font-size-hero: 42px;
    --line-height-base: 1.7;
    --line-height-heading: 1.3;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 60px;

    /* Layout */
    --container-width: 1170px;
    --sidebar-width: 280px;

    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 25px rgba(245, 166, 35, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-round: 50%;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}




.mobile-bottom-nav {
    display: none;
}

.nav-mobile-logo {
    display: none;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--line-height-heading);
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-hero);
}

h2 {
    font-size: var(--font-size-xxl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
    padding: 0 15px;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.section {
    padding: var(--spacing-xxl) 0;
}

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

.section-primary {
    background-color: var(--primary);
    color: var(--white);
}

.section-dark {
    background-color: var(--dark-alt);
    color: var(--white);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: var(--dark-alt);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    flex: 1;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.top-bar-social a:hover {
    color: var(--primary);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background-color: var(--secondary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

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

.site-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
    text-decoration: none;
}

.site-logo img {
    max-height: 130px;
    width: auto;
}

.header-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact-item i {
    font-size: 20px;
    color: var(--primary);
}

.header-contact-item .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-contact-item .value {
    font-size: var(--font-size-base);
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-navigation {
    background-color: var(--primary);
    position: relative;
    z-index: 1000;
}

.main-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 15px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item>a,
.nav-menu li.current-menu-ancestor>a {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
}

/* Dropdown */
.nav-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 1001;
    border-top: 3px solid var(--primary);
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li .sub-menu li a {
    color: var(--dark);
    padding: 12px 20px;
    font-size: 13px;
    text-transform: none;
    border-bottom: 1px solid var(--border);
}

.nav-menu li .sub-menu li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.nav-cta {
    margin-left: auto;
}

.nav-cta a {
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--dark);
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-fast);
    letter-spacing: 0.5px;
    border: 1px solid var(--primary);
}

.nav-cta a:hover {
    background-color: var(--primary);
    color: var(--dark) !important;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #e8dfd0;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    padding-left: 50px;
}

.hero-content h1 {
    font-size: var(--font-size-hero);
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.hero-slider-dot.active {
    background-color: var(--white);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.hero-slider-arrow.prev {
    left: 20px;
}

.hero-slider-arrow.next {
    right: 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-heading h2 {
    font-size: var(--font-size-xxl);
    color: var(--secondary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 12px auto 0;
}

.section-heading p {
    font-size: var(--font-size-base);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    text-align: left;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:not(.service-card-with-image) {
    padding: 25px;
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
}

.service-card-with-image {
    padding: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-card-thumb-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-thumb-icon .service-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 28px;
}

.service-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-thumb-img {
    transform: scale(1.08);
}

.service-card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: background var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--primary-dark);
}

.service-card-with-image .service-card-body {
    padding: 20px;
}

.service-card-body {
    flex: 1;
}

.service-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 8px;
}

.service-card h3 a {
    color: var(--secondary);
    text-decoration: none;
}

.service-card h3 a:hover {
    color: var(--primary);
}

.service-card p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-card .read-more {
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .read-more:hover {
    color: var(--primary-dark);
}

.service-card .read-more::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.service-card:hover .read-more::after {
    transform: translateX(3px);
}

/* ============================================
   ABOUT SECTION (Homepage)
   ============================================ */
.about-section {
    background: var(--dark-blue);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 70px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 30, 60, 0.85);
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-section .about-content h2 {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-section .about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: var(--font-size-base);
}

.about-section .btn-primary {
    margin-top: 10px;
}

/* About page (separate) */
.about-page-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-page-image img {
    border-radius: var(--radius-lg);
    width: 100%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--dark-blue);
    padding: 60px 0;
}

.testimonials-section .section-heading h2 {
    color: var(--white);
}

.testimonials-section .section-heading h2::after {
    background-color: var(--primary);
}

.testimonials-section .section-heading p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    padding: 20px;
}

.testimonial-item.active {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-item .author-photo {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: var(--radius-round);
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-item .testimonial-text {
    flex: 1;
}

.testimonial-item .quote-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.testimonial-item blockquote {
    font-size: var(--font-size-base);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-item .testimonial-stars {
    margin-bottom: 10px;
}

.testimonial-item .author {
    font-weight: 700;
    color: var(--white);
    font-size: var(--font-size-base);
}

.testimonial-item .author span {
    display: block;
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testimonials-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.testimonials-dots button.active {
    background: var(--primary);
}

/* ============================================
   CALLBACK FORM
   ============================================ */
.callback-section {
    background: var(--primary);
    color: var(--dark);
    padding: 60px 0;
}

.callback-section .section-heading h2 {
    color: var(--dark);
}

.callback-section .section-heading h2::after {
    background-color: var(--dark);
}

.callback-section .section-heading p {
    color: rgba(0, 0, 0, 0.7);
}

.callback-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: rgba(0, 0, 0, 0.8);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--dark);
    transition: border-color var(--transition-fast);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-control:focus {
    outline: none;
    border-color: var(--dark);
    background-color: rgba(255, 255, 255, 0.7);
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

/* Light forms (for contact page, etc.) */
.form-light .form-group label {
    color: var(--dark);
}

.form-light .form-control {
    background-color: var(--white);
    border-color: var(--border);
    color: var(--dark);
}

.form-light .form-control::placeholder {
    color: var(--gray-light);
}

.form-light .form-control:focus {
    border-color: var(--primary);
}

/* Form alerts */
.form-alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: var(--font-size-sm);
}

.form-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 8px 14px;
    line-height: 1.2;
    z-index: 2;
    font-family: var(--font-heading);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    font-size: var(--font-size-sm);
    color: var(--gray-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-card-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
}

.blog-card-content h3 a {
    color: var(--secondary);
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    font-size: var(--font-size-sm);
    margin-bottom: 15px;
}

.read-more-link {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-fast);
}

.read-more-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.read-more-link:hover {
    color: var(--primary-dark);
}

.read-more-link:hover::after {
    transform: translateX(4px);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-alt) 100%);
    padding: 40px 0;
    text-align: center;
}

.breadcrumb-section h1 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.breadcrumb-trail {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: var(--font-size-sm);
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-trail a:hover {
    color: var(--primary);
}

.breadcrumb-trail .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-trail .current {
    color: var(--primary);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-service-menu {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.sidebar-service-menu h3 {
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 20px;
    font-size: 16px;
    margin-bottom: 0;
}

.sidebar-service-menu ul li {
    border-bottom: 1px solid var(--border);
}

.sidebar-service-menu ul li:last-child {
    border-bottom: none;
}

.sidebar-service-menu ul li a {
    display: block;
    padding: 14px 20px;
    color: var(--dark);
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 35px;
}

.sidebar-service-menu ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    color: var(--primary);
}

.sidebar-service-menu ul li a:hover,
.sidebar-service-menu ul li.current a {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 40px;
}

.sidebar-service-menu ul li a:hover::before,
.sidebar-service-menu ul li.current a::before {
    color: var(--white);
}

/* Sidebar contact widget */
.sidebar-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
}

.sidebar-contact h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.sidebar-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.sidebar-contact .contact-item i {
    font-size: 18px;
    margin-top: 3px;
}

.sidebar-contact .contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

/* ============================================
   TABLES
   ============================================ */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fee-table thead th {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fee-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--gray);
}

.fee-table tbody tr:nth-child(even) {
    background-color: var(--lighter);
}

.fee-table tbody tr:hover {
    background-color: var(--primary-light);
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion {
    max-width: 900px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    padding: 18px 25px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: var(--font-size-base);
    color: var(--secondary);
    transition: all var(--transition-fast);
}

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

.accordion-header.active {
    background-color: var(--primary);
    color: var(--white);
}

.accordion-header .icon {
    font-size: 14px;
    transition: transform var(--transition-base);
}

.accordion-header.active .icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-base);
}

.accordion-body.open {
    padding: 20px 25px;
    max-height: 500px;
}

.accordion-body p {
    line-height: 1.8;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
    text-align: center;
    color: var(--dark);
}

.cta-banner h2 {
    color: var(--dark);
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(0, 0, 0, 0.75);
    font-size: var(--font-size-lg);
    margin-bottom: 30px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 30px;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.contact-info-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info-card p {
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.office-address {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.office-address h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.office-address p {
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
}

.office-address i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--dark-alt);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 12px;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: var(--font-size-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

/* ============================================
   MOBILE CONTACT STRIP (hidden on desktop)
   ============================================ */
.mobile-contact-strip {
    display: none;
}

/* ============================================
   WHATSAPP FLOATING WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-widget i {
    color: var(--white);
    font-size: 28px;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
    padding: var(--spacing-xxl) 0;
}

.page-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.page-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.page-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray);
    list-style: none;
}

.page-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* Service single page layout */

/* RAC Table Styles */
.page-content table.rac-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    font-size: 14px;
}

.page-content table.rac-table thead th {
    background: var(--primary);
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.page-content table.rac-table tbody td {
    padding: 10px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    line-height: 1.6;
}

.page-content table.rac-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.page-content table.rac-table tbody td strong {
    color: var(--secondary);
}



.service-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    gap: 30px;
    padding: var(--spacing-xxl) 0;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.footer-social a::before {
    content: none;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination a:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .current {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   COMPLAINTS PAGE
   ============================================ */
.complaint-form-section {
    background-color: var(--lighter);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.grievance-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.grievance-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.grievance-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* ============================================
   SERVICE CARD THUMBNAILS
   ============================================ */
.service-card.has-image {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.service-card-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card.has-image:hover .service-card-thumb img {
    transform: scale(1.05);
}

.service-card.has-image .service-card-icon {
    margin: 18px 20px 0;
}

.service-card.has-image .service-card-body {
    padding: 10px 20px 20px;
}

/* ============================================
   RELATED SERVICES (MEA Page bottom)
   ============================================ */
.related-services-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.related-services-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 25px;
    color: var(--secondary);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.related-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.related-service-image {
    height: 180px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.05);
}

.related-service-content {
    padding: 20px;
}

.related-service-content h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 10px;
}

.related-service-content h4 a {
    color: var(--secondary);
}

.related-service-content h4 a:hover {
    color: var(--primary);
}

.related-service-content p {
    font-size: var(--font-size-sm);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* ============================================
   RAC TABLE STYLING
   ============================================ */
.page-content table.rac-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 30px;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.page-content table.rac-table thead th {
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.page-content table.rac-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray);
    vertical-align: top;
    line-height: 1.7;
}

.page-content table.rac-table tbody td strong {
    color: var(--secondary);
}

.page-content table.rac-table tbody tr:nth-child(even) {
    background-color: var(--lighter);
}

.page-content table.rac-table tbody tr:hover {
    background-color: var(--primary-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

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

.text-white {
    color: var(--white);
}

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

.text-gray {
    color: var(--gray);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-lg);
}

.mt-3 {
    margin-top: var(--spacing-xl);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-lg);
}

.mb-3 {
    margin-bottom: var(--spacing-xl);
}

.py-1 {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-2 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-3 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.d-flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: var(--spacing-sm);
}

.gap-2 {
    gap: var(--spacing-lg);
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 992px)
   ============================================ */
@media (max-width: 992px) {

    /* ── Top Bar ── */
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-bar-social {
        justify-content: center;
    }

    /* ── Header ── */
    .site-header .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .header-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* ── Navigation — show hamburger ── */
    .menu-toggle {
        display: block;
    }

    .main-navigation .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background-color: rgba(0, 0, 0, 0.08);
        min-width: 100%;
    }

    .nav-menu li .sub-menu li a {
        color: var(--white);
        padding-left: 35px;
        font-size: 13px;
    }

    .nav-cta {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .nav-cta a {
        display: block;
        width: 100%;
    }

    /* ── Hero Slider ── */
    .hero-slide {
        background-position: center center;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider-arrow {
        display: none;
    }

    /* ── Service Grid ── */
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: 2;
    }

    .page-content {
        order: 1;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Breadcrumb ── */
    .breadcrumb h1 {
        font-size: 24px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================ */
@media (max-width: 768px) {

    /* ── Header ── */
    .header-contact {
        flex-direction: column;
        gap: 8px;
    }

    .header-contact-item {
        justify-content: center;
    }

    /* ── Hero Slider ── */

    /* ── Service Cards ── */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ── About Section ── */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* ── RAC Tables ── */
    .page-content table.rac-table {
        font-size: 12px;
    }

    .page-content table.rac-table thead th,
    .page-content table.rac-table tbody td {
        padding: 8px 10px;
    }

    /* ── Breadcrumb ── */
    .breadcrumb h1 {
        font-size: 20px;
    }

    .breadcrumb-trail {
        font-size: 12px;
    }

    /* ── Stats / Counters ── */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Testimonials ── */
    .testimonial-item {
        padding: 20px;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 576px)
   ============================================ */
@media (max-width: 576px) {

    /* ── Top Bar ── */
    .top-bar {
        font-size: 11px;
        padding: 5px 0;
    }

    /* ── Header ── */
    .site-header {
        padding: 12px 0;
    }

    .site-logo a {
        font-size: 18px;
    }

    .site-logo img {
        max-height: 40px;
    }

    /* ── Hero Slider ── */

    /* ── Container ── */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* ── Sections ── */
    .section-heading h2 {
        font-size: 22px;
    }
}

/* ============================================
   MEA ATTESTATION TYPES SECTION
   ============================================ */
.mea-types-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
}

.mea-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mea-type-buttons .btn {
    min-width: 240px;
    text-align: center;
}

.mea-types-heading {
    text-align: center;
    margin-bottom: 25px;
}

.mea-types-heading h3 {
    font-size: 22px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.mea-types-heading h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
}

.mea-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.mea-type-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.mea-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.mea-type-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.mea-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.mea-type-card:hover .mea-type-image img {
    transform: scale(1.08);
}

.mea-type-content {
    padding: 20px;
}

.mea-type-content h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.mea-type-card:hover .mea-type-content h4 {
    color: var(--primary);
}

.mea-type-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.mea-type-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.mea-type-card:hover .mea-type-link {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .mea-types-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mea-type-card {
        display: flex;
        flex-direction: row;
    }

    .mea-type-image {
        width: 130px;
        min-width: 130px;
        height: auto;
        min-height: 120px;
    }

    .mea-type-content {
        padding: 15px;
    }

    .mea-type-content h4 {
        font-size: 16px;
    }

    .mea-type-content p {
        font-size: 12px;
    }

    .mea-types-heading h3 {
        font-size: 18px;
    }
}