/*
Theme Name: TonerTrack SaaS
Description: A modern, responsive WordPress theme designed specifically for SaaS sales websites. Features clean design, conversion-optimized layouts, and built-in sections for pricing, testimonials, and features.
Version: 1.0.0
Author: TonerTrack
Text Domain: tonertrack
*/

/* ==========================================================================
   CSS Reset and Base Styles
   ========================================================================== */

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

:root {
    --primary-color: #009fe3;
    --primary-color-rgb: 0, 159, 227;
    --primary-color-dark: #007bb8;
    --primary-dark: #1d4ed8;
    --secondary-color: #ffed00;
    --secondary-color-dark: #0a0a0a;
    --accent-color: #e7007e;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-on-dark: #e5e7eb;
    --text-secondary-on-dark: #f6f6f6;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-light: #f8fafc;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --border-color-on-dark: #4b5563;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    /* background-color: var(--bg-primary); */
    background-color: #f8f9fa; 
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Default for desktop (admin bar height: 32px or 46px depending on screen) */
body.admin-bar .site-header,
body.admin-bar header {
  top: 32px; /* admin bar height on desktop */
}

/* For smaller screens (WordPress admin bar height = 0 or 46px depending on WP version) */
@media screen and (max-width: 782px) {
  body.admin-bar .site-header,
  body.admin-bar header {
    top: 46px; /* admin bar height on mobile */
  }
}

/* For very small screens (when admin bar collapses) */
@media screen and (max-width: 600px) {
  body.admin-bar .site-header,
  body.admin-bar header {
    top: 0; /* remove offset when admin bar is hidden or overlays content */
  }
}


/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

a.normal {
    text-transform: none;
}

a.footer-link {
    text-transform: none;
    position: relative;
    display: inline-block;
}

a.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

a.footer-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.site-logo img {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

.site-logo img:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    font-weight: 700;
    color: #ffffff;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    pointer-events: auto;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color-dark);
    border: 2px solid var(--primary-color);
}

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

/* Secondary button on dark backgrounds */
.hero-section .btn-secondary,
.cta-section .btn-secondary,
.site-header .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-section .btn-secondary:hover,
.cta-section .btn-secondary:hover,
.site-header .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color-dark);
    border: 2px solid var(--border-color);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-secondary-on-dark);
    border-color: var(--primary-color);
}

/* Outline button on dark backgrounds */
.hero-section .btn-outline,
.cta-section .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-section .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Hero Section */
.hero-section {
    background: var(--primary-color);
    
    color: white;
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 10rem 0 8rem 0;
    margin-top: 80px; /* Increased to account for fixed header */
}

.hero-section .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
}

.platform-screenshot {
    max-width: 100%;
    position: relative;
}

.platform-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.platform-img:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); */
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    height: 180px;
    border-radius: 0 0 80% 80%;
    background: var(--primary-color);
    
    /* Shadow only below — no top edge shadow */
    box-shadow: 0 60px 60px rgba(0, 0, 0, 0.15),
                0 30px 30px rgba(0, 0, 0, 0.05);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary-on-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Features Slider Styles (Swiper) */
.features-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem 2rem 5rem;
    overflow: visible;
}

.features-slider .swiper-wrapper {
    padding-bottom: 1rem;
}

.features-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 1rem 1rem 1rem;
}


/* Swiper Navigation Arrows - Circular Minimal Style for Benefits Slider */
.benefits-slider .swiper-button-prev,
.benefits-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefits-slider .swiper-button-prev:after,
.benefits-slider .swiper-button-next:after {
    font-size: 14px;
    font-weight: 600;
}

.benefits-slider .swiper-button-prev:hover,
.benefits-slider .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.benefits-slider .swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.benefits-slider .swiper-button-disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.8);
}

/* Swiper Pagination for Benefits Slider */
.benefits-slider .swiper-pagination {
    position: static !important;
    margin-top: 2rem;
    padding: 16px 20px !important;
    text-align: center;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    min-height: 40px !important;
}

.benefits-slider .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(var(--primary-color-rgb), 0.6) !important;
    border: 2px solid rgba(var(--primary-color-rgb), 0.2) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    margin: 0 10px !important;
    cursor: pointer !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
}

.benefits-slider .swiper-pagination-bullet-active,
.benefits-slider .swiper-pagination-bullet:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: scale(1.2) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile adjustments for Swiper navigation */
@media (max-width: 768px) {
    .benefits-slider {
        padding: 0 1rem 2rem 1rem;
    }
    
    /* Hide navigation arrows on mobile */
    .benefits-slider .swiper-button-prev,
    .benefits-slider .swiper-button-next {
        display: none;
    }
    
    .benefits-slider .swiper-pagination {
        margin-top: 2rem;
        padding: 12px 16px !important;
        width: 100% !important;
        min-height: 32px !important;
    }
    
    .benefits-slider .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        margin: 0 8px !important;
    }
}


/* Pricing Section */
.pricing-section {
    padding: 4rem 0 6rem 0;
    background: #f9fafb;
}

/* Free Trial Section */
.pricing-free-trial {
    background-color: #007bb5; 
    padding: 3rem;
    margin: 3rem -1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-lg);
    width: calc(100% + 2rem);
    border-radius: var(--border-radius-lg);
}

@media screen and (max-width: 1024px) {
    .pricing-free-trial {
      border-radius: 0;
    }
  }
  

.free-trial-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.free-trial-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.free-trial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.free-trial-features span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.free-trial-cta {
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.free-trial-cta .pricing-price {
    color: white;
    margin-bottom: 1.5rem;
}

.free-trial-cta .btn {
    background: white;
    color: var(--primary-color-dark);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.free-trial-cta .btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 8rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 4rem;
    text-align: center;
}

.pricing-footer p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.pricing-footer link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.pricing-footer link:hover {
    color: var(--primary-color-dark);
}

/* Plan Icons */
.plan-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--bg-secondary);
    transition: var(--transition);
}

.plan-icon i {
    font-size: 2rem;
    color: var(--text-secondary);
}

/* Plan Color Schemes */
.bronze-plan {
    border-color: #cd7f32;
}

.bronze-plan .plan-icon {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
}

.bronze-plan .plan-icon i {
    color: white;
}

.bronze-plan:hover {
    border-color: #b8860b;
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.2);
}

.silver-plan {
    border-color: #c0c0c0;
}

.silver-plan .plan-icon {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.silver-plan .plan-icon i {
    color: white;
}

.silver-plan:hover {
    border-color: #a8a8a8;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.2);
}

.gold-plan {
    border-color: #ffd700;
}

.gold-plan .plan-icon {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.gold-plan .plan-icon i {
    color: white;
}

.gold-plan:hover {
    border-color: #ffb347;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.ultimate-plan {
    border-color: #b9f2ff;
}

.ultimate-plan .plan-icon {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
}

.ultimate-plan .plan-icon i {
    color: white;
}

.ultimate-plan:hover {
    border-color: #87ceeb;
    box-shadow: 0 10px 30px rgba(185, 242, 255, 0.2);
}

/* Benefits We Provide Section  */
.benefits-section {
    margin-top: 50px;
    padding: 8rem 0 6rem;
    background: var(--bg-secondary);
}

/* Benefits Slider Styles (Swiper) */
.benefits-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5rem 2rem 5rem;
    overflow: visible;
}

.benefits-slider .swiper-wrapper {
    padding-bottom: 1rem;
}

.benefits-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 1rem 1rem 1rem;
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.benefit-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-featured-image {
    transform: scale(1.05);
}

.benefit-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-image-placeholder .material-icons {
    font-size: 3rem;
    opacity: 0.8;
}

.benefit-text-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.benefit-text-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.benefit-content {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Features List Section */
.features-list-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-primary);
}

.features-list-section p {
    color: var(--text-secondary);
}

.features-list {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.features-list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(148, 163, 184, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    min-height: 120px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 45%;
}

.feature-item.feature-left {
    flex-direction: row;
    margin-right: auto;
}

.feature-item.feature-right {
    flex-direction: row-reverse;
    margin-left: auto;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.feature-item:last-child {
    margin-bottom: 0;
}

/* Feature Arrows */
.feature-arrow {
    position: absolute;
    width: 170px;
    height: 170px;
    z-index: 2;
    pointer-events: none;
    top: 50%;
    transform: translateY(-70%);
}

.feature-arrow.arrow-right {
    right: -260px;
}

.feature-arrow.arrow-left {
    left: -260px;
}

.feature-arrow .curved-arrow {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-arrow:hover .curved-arrow {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    z-index: 3;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.feature-content {
    flex: 1;
    max-width: 400px;
    padding: 0 1rem;
}

.feature-left .feature-content {
    text-align: right;
}

.feature-right .feature-content {
    text-align: left;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.feature-description {
    line-height: 1.6;
    margin: 0;
    color: #64748b;
    font-size: 1rem;
}

.feature-description p {
    margin-bottom: 0.75rem;
    color: #64748b;
}

.feature-description p:last-child {
    margin-bottom: 0;
}



.feature-check {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-cross {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-unavailable {
    color: var(--text-light);
    font-size: 1.2rem;
}

.feature-text,
.feature-number {
    color: var(--text-primary);
    font-weight: 500;
}

/* Mobile Features List */
@media (max-width: 768px) {
    .features-list {
        max-width: 100%;
        margin: 2rem 0 0;
    }
    
    .features-list::before {
        display: none;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2.5rem;
        min-height: auto;
        padding: 1.5rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item.feature-left,
    .feature-item.feature-right {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-icon-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-content {
        padding: 0;
        max-width: 100%;
    }
    
    .feature-left .feature-content,
    .feature-right .feature-content {
        text-align: center;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    /* Hide arrows on mobile */
    .feature-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-list-section {
        padding: 4rem 0;
    }
    
    .feature-item {
        margin-bottom: 2rem;
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .feature-content {
        padding: 0;
    }
}

.feature-plans {
    display: grid;
    gap: 1rem;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--bg-secondary);
}

.plan-item.featured {
    background: rgba(var(--primary-color-rgb), 0.1);
    border: 2px solid var(--primary-color);
}

.plan-item .plan-name {
    font-weight: 600;
    color: var(--text-primary);
}

.plan-item .plan-value {
    font-weight: 500;
}

/* Navigation Updates for Benefits Slider - Circular Minimal Style */
.benefits-nav-prev,
.benefits-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
}

.benefits-nav-prev {
    left: 1rem;
}

.benefits-nav-next {
    right: 1rem;
}

.benefits-nav-prev:hover,
.benefits-nav-next:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.benefits-pagination {
    text-align: center;
    margin-top: 2rem;
}

.benefits-pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--border-color);
    opacity: 1;
    margin: 0 0.25rem;
    transition: var(--transition);
}

.benefits-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design for Features Grid */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 4rem;
        height: 4rem;
        margin-top: 0.125rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-content {
        gap: 0.5rem;
    }
    
    .benefits-slider {
        padding: 0 1rem 2rem 1rem;
    }
    
    .benefits-nav-prev,
    .benefits-nav-next {
        display: none;
    }
    
    .benefit-card {
        max-width: 280px;
        min-height: 350px;
    }
    
    .benefit-image {
        height: 160px;
    }
    
    .benefit-text-content {
        padding: 1.25rem;
    }
    
    .benefit-text-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-content {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-primary);
    padding: 6rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-member-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-member-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.team-member-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.team-member-phone i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.team-member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 50px;
}

/* Remove footer margin on homepage only */
.home .site-footer {
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
	justify-content: center;
	justify-items: center;
	text-align: center;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: left;
}

.footer-section {
	display: flex;
	flex-direction: column;
    text-align: left;
}

.footer-section a {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	text-align: center;
}

/* Social Links */
.social-links {
    margin-top: 1.5rem;
}

.social-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Social platform specific colors on hover */
.social-facebook:hover {
    background: #1877f2;
}

.social-twitter:hover {
    background: #1da1f2;
}

.social-linkedin:hover {
    background: #0077b5;
}

.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-youtube:hover {
    background: #ff0000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        margin-top: 80px; /* Account for compact mobile header on tablets */
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 8rem 0 8rem; /* Standard padding for mobile */
        margin-top: 80px; /* Account for compact mobile header: 16px + 40px + 16px = 72px + buffer */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section::after {
        bottom: -60px;
        height: 120px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Free Trial Responsive */
    .pricing-free-trial {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .free-trial-content h3 {
        font-size: 2rem;
    }
    
    .free-trial-features {
        justify-content: center;
    }
    
    .free-trial-cta {
        margin-top: 1rem;
    }
    
    /* Pricing Grid Responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Maintain plan icon size on mobile */
    .plan-icon {
        width: 50px;
        height: 50px;
    }
    
    .plan-icon i {
        font-size: 1.75rem;
    }
}

/* Tablet Responsive for Pricing */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-free-trial {
        padding: 2.5rem;
    }
    
    .free-trial-content h3 {
        font-size: 2.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

/* Hide menu toggle on desktop */
@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
    }
    
    .header-actions {
        display: flex;
        gap: 1rem;
    }
}

/* Mobile menu toggle should be visible on smaller screens */
.menu-toggle-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-toggle-icon span {
    width: 1.5rem;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-toggle:hover .menu-toggle-icon span {
    background: rgba(255, 255, 255, 0.8);
}

/* Header Scroll Effects */
.site-header.scrolled {
    background: var(--primary-color);
    backdrop-filter: none;
    box-shadow: var(--shadow-md);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Don't hide header on mobile - keep hamburger menu accessible */
@media (max-width: 991px) {
    .site-header.header-hidden {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Ensure hamburger menu stays visible */
    .site-header.header-hidden .menu-toggle {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }
}

.site-header {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.contact-form form {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff; 
    text-align: left;
}

/* WPForms Contact Form Styling */
.wpforms-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Increase width for Contact form 28 only */
#wpforms-28.wpforms-container {
    max-width: 800px;
}

.wpforms-container:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Force labels to be left-aligned */
#wpforms-form-28 .wpforms-field-label,
#wpforms-form-28 .wpforms-field-sublabel {
    color: #1e293b;
    text-align: left;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

#wpforms-form-28 .wpforms-field-sublabel {
    color: rgba(var(--primary-color-rgb), 0.7);
    text-align: left;
    display: block;
    margin-left: 10px;
    margin-bottom: 8px;
    font-weight: 600;

    font-size: 0.75rem;
}

/* Style input fields for better contrast */
#wpforms-form-28 input[type="text"],
#wpforms-form-28 input[type="email"],
#wpforms-form-28 input[type="url"],
#wpforms-form-28 input[type="tel"],
#wpforms-form-28 input[type="number"],
#wpforms-form-28 input[type="date"],
#wpforms-form-28 input[type="password"],
#wpforms-form-28 textarea,
#wpforms-form-28 select {
    background-color: #f8fafc;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

#wpforms-form-28 input[type="text"]:focus,
#wpforms-form-28 input[type="email"]:focus,
#wpforms-form-28 input[type="url"]:focus,
#wpforms-form-28 input[type="tel"]:focus,
#wpforms-form-28 input[type="number"]:focus,
#wpforms-form-28 input[type="date"]:focus,
#wpforms-form-28 input[type="password"]:focus,
#wpforms-form-28 textarea:focus,
#wpforms-form-28 select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Placeholder text */
#wpforms-form-28 ::placeholder {
    color: #94a3b8;
}

/* Buttons */
#wpforms-form-28 button,
#wpforms-form-28 input[type="submit"] {
    display: inline-flex;          /* changed from inline-block */
    align-items: center;           /* vertical centering */
    justify-content: center;       /* horizontal centering */
    padding: 1.5rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    text-align: center;            /* fallback for text */
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    pointer-events: auto;
    color: white;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}


#wpforms-form-28 button:hover,
#wpforms-form-28 input[type="submit"]:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* Make Bookly Next look like pricing .btn .btn-primary */
button.bookly-btn.bookly-next-step.ladda-button {
	display: inline-block;
	padding: 0.75rem 1.5rem !important;              /* same as .btn */
	border-radius: var(--border-radius) !important;  /* same radius */
	background: var(--primary-color);     /* same as .btn-primary */
	color: #fff;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

/* Hover state like .btn-primary:hover */
button.bookly-btn.bookly-next-step.ladda-button:hover {
	background: var(--primary-dark) !important;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* Uppercase label to match style */
button.bookly-btn.bookly-next-step .ladda-label {
	text-transform: uppercase !important;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .wpforms-container {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .wpforms-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    #wpforms-form-28 input[type="text"],
    #wpforms-form-28 input[type="email"],
    #wpforms-form-28 input[type="url"],
    #wpforms-form-28 input[type="tel"],
    #wpforms-form-28 input[type="number"],
    #wpforms-form-28 input[type="date"],
    #wpforms-form-28 input[type="password"],
    #wpforms-form-28 textarea,
    #wpforms-form-28 select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid #a7f3d0;
}

/* Testimonial Rating */
.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #d1d5db;
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.star.filled {
    color: #fbbf24;
}

/* Post Styles */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.entry-title {
    margin-bottom: 3rem;
    text-align: center;
}

.entry-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-meta {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.entry-meta span {
    margin-right: 1rem;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
}

.search-form button {
    padding: 0.75rem 1.5rem;
}

/* Error 404 Styles */
.error-404-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.popular-pages {
    margin-top: 2rem;
}

.popular-pages ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.popular-pages a {
    display: block;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.popular-pages a:hover {
    background: var(--primary-color);
    color: white;
}

/* Button Sizes */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

/* WordPress Pagination Styles */
.navigation.pagination {
    margin: 3rem 0;
    text-align: center;
    clear: both;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
}

.page-numbers.current {
    cursor: default;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
}

.pricing-price .price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-price .amount-line {
    display: flex;
    align-items: baseline;
}

.pricing-price .currency {
    font-size: 0.6em;
    margin-right: 0.1em;
}

.pricing-price .amount {
    font-size: 1em;
}

.pricing-price .period {
    font-size: 0.5em;
    margin-top: 0.2em;
    line-height: 1;
    margin-bottom: 1em;
}

/* Pagination Arrow Styling */
.page-numbers.prev,
.page-numbers.next {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    position: relative;
}

.page-numbers.prev::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 1.1em;
    line-height: 1;
}

.page-numbers.next::after {
    content: "→";
    margin-left: 0.5rem;
    font-size: 1.1em;
    line-height: 1;
}

/* Disabled pagination states */
.page-numbers.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-light);
}

.page-numbers.disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-light);
}

/* Fix for Swiper Pagination Bullets Position on Desktop */
@media (min-width: 769px) {
    /* Adjust pagination bullets positioning - move them down on desktop */
    .benefits-slider .swiper-pagination,
    .benefits-pagination {
        position: static !important;
        margin-top: 3rem !important; /* Reduced from 4rem to prevent floating over slides */
        padding: 16px 20px !important;
        min-height: 40px !important;
        transform: translateY(0) !important; /* Ensure no vertical offset */
    }
    
    /* Benefits Slider Arrows - Enhanced for Desktop */
    .benefits-slider .swiper-button-prev,
    .benefits-slider .swiper-button-next {
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        border-radius: 50% !important;
        color: var(--primary-color) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .benefits-slider .swiper-button-prev:after,
    .benefits-slider .swiper-button-next:after {
        font-size: 16px !important;
        font-weight: 600 !important;
    }
    
    .benefits-slider .swiper-button-prev:hover,
    .benefits-slider .swiper-button-next:hover {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18) !important;
        transform: scale(1.08) !important;
    }
    
    /* Enhanced arrow styling for desktop - Benefits Custom Navigation */
    .benefits-nav-prev,
    .benefits-nav-next {
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        border-radius: 50% !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
        color: var(--primary-color) !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .benefits-nav-prev:hover,
    .benefits-nav-next:hover {
        background: rgba(255, 255, 255, 0.95) !important;
        color: var(--primary-color) !important;
        transform: translateY(-50%) scale(1.08) !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18) !important;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Mobile Logo Styles */
.mobile-logo {
    display: none;
}

/* Responsive Design - Mobile */
@media (max-width: 991px) {

    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 9999;
        position: relative;
        background: transparent !important;
        border: none !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
        padding: 0.5rem !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }
    
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: translateY(-1px) !important;
    }
    
    /* Hide desktop navigation on mobile initially */
    .main-navigation ul {
        display: none;
    }
    
    /* Hide menu toggle text on mobile */
    .menu-toggle-text {
        display: none !important;
    }
    
    .menu-toggle-icon span {
        background: #ffffff !important;
        height: 2px !important;
        box-shadow: none !important;
    }
    
    /* Logo switching for mobile */
    .desktop-logo {
        display: none;
    }
    
    .mobile-logo {
        display: block;
    }
    
    .mobile-logo .custom-logo {
        max-height: 80px !important;
        width: auto;
        min-width: 60px;
    }
    
    /* Ensure mobile logo is visible and has proper dimensions */
    .mobile-logo {
        min-height: 40px;
        min-width: 60px;
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
    }
    
    /* Style for text-based mobile logo fallback */
    .site-title-wrapper.mobile-logo .site-title {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .site-title-wrapper.mobile-logo .site-title a {
        color: #ffffff;
        text-decoration: none;
    }
    
    /* Fallback for mobile logo when using desktop logo */
    .mobile-fallback .custom-logo {
        max-height: 50px !important;
        width: auto !important;
        min-width: 100px !important;
    }
    
    /* Center branding section on mobile */
    .site-branding {
        flex: 1;
        text-align: left;
        order: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
        width: auto;
        min-height: auto;
    }
    
    .menu-toggle {
        order: 3;
        margin-left: auto;
    }
    
    .main-navigation {
        order: 4;
    }
    
    .header-actions {
        order: 1;
        display: none; /* Hide the "Get Started" button on mobile */
    }
    
    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        padding: 1rem 0;
        min-height: 60px;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 9998;
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    /* Hide desktop navigation when menu is closed on mobile */
    .main-navigation:not(.active) ul {
        display: none !important;
    }
    
    .main-navigation.active ul {
        display: flex !important;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        color: #ffffff;
    }
    
    .main-navigation a:last-child {
        border-bottom: none;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 50vh;
        padding: 6rem 0 6rem; /* Reduced padding for smaller screens */
        margin-top: 80px; /* Same compact header height */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section::after {
        bottom: -50px;
        height: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        justify-content: start;
        justify-items: start;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Social links mobile adjustments */
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .social-link i {
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-photo {
        width: 200px;
        height: 200px;
    }
    
    .team-member-placeholder {
        font-size: 2.5rem;
    }
    
    /* Benefits slider mobile adjustments */
    .benefit-card {
        max-width: 260px;
        min-height: 320px;
    }
    
    .benefit-image {
        height: 140px;
    }
    
    .benefit-text-content {
        padding: 1rem;
    }
    
    .benefit-text-content h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-content {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .benefit-image-placeholder .material-icons {
        font-size: 2.5rem;
    }
}

/* Page Hero Section (for non-front pages) */
.page-hero-section {
    background: var(--primary-color);
    color: white;
    min-height: 40vh;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem 0;
}

.page-hero-section .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--primary-color);
    border-radius: 0 0 80% 80%;
        
    /* Shadow only below — no top edge shadow */
    box-shadow: 0 60px 60px rgba(0, 0, 0, 0.15),
                0 30px 30px rgba(0, 0, 0, 0.05);
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.page-hero-meta {
    font-size: 1rem;
    color: var(--text-secondary-on-dark);
    margin-bottom: 0;
}

/* Main Content Area - Account for Fixed Header */
/* Only apply top padding on non-front-page where there's no hero section */
body:not(.home) .site-main {
    padding-top: 6rem; /* Account for fixed header height */
}

/* Adjust main content for pages with page hero */
body:not(.home) .has-page-hero .site-main {
    padding-top: 0; /* Remove top padding when page hero is present */
}

.has-page-hero .site-main .container {
    padding-top: 4rem; /* Add space after curved background */
}

/* Legal Pages Styling */
.legal-page .entry-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-page .entry-title {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.legal-page .last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-content h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Table of contents styling (if needed in future) */
.legal-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.legal-toc h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

.legal-toc ul {
    margin: 0;
    padding-left: 1.5rem;
}

.legal-toc li {
    margin-bottom: 0.5rem;
}

/* Page Hero Responsive */
@media (max-width: 768px) {
    .page-hero-section {
        min-height: 35vh;
        padding: 6rem 0 3rem 0;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-section::after {
        bottom: -40px;
        height: 80px;
    }
    
    .has-page-hero .site-main .container {
        padding-top: 3rem;
    }
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    /* Adjust main content padding for smaller mobile screens */
    body:not(.home) .site-main {
        padding-top: 5rem; /* Slightly less padding on mobile to save space */
    }
    
    .legal-page .entry-title {
        font-size: 2rem;
    }
    
    .legal-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.6rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
    }
}
