/*
Theme Name: PawsitiveManners
Description: A modern, responsive WordPress theme for PawsitiveManners dog training services
Version: 1.2.7
Author: PawsitiveManners
Text Domain: pawsitivemanners
*/

:root {
    --color-primary: #218388;
    --color-text: #232323;
    --color-heading: #1a2327;
    --color-background-light: #f7f9fa;
    --color-background-white: #ffffff;
    --color-footer-bg: #1a2327;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-heading);
    letter-spacing: 0.5px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
    font-weight: 500;
}

a:hover {
    color: #17616a;
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--color-background-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2rem;
}

.site-branding {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.site-branding img {
    max-height: 80px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-heading);
    text-decoration: none;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--color-heading);
    border-bottom-color: var(--color-primary);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: none;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--color-background-light);
    color: var(--color-primary);
    border-bottom: none;
}

.dropdown-toggle .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Sub-menu (nested dropdowns) */
.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

.dropdown-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1000;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-heading);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: #fff;
    text-align: center;
    padding: 5rem 0;
}

.hero-content h1 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .subheading {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.hero-content .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0;
    display: block;
}

.free-download-box {
    background: var(--color-background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 2rem auto 0 auto;
}

.free-download-box h3 {
    font-weight: 700;
    color: var(--color-heading);
}

/* Hero Statement Section */
.hero-statement {
    padding: 5rem 0;
    background: var(--color-background-light);
}

.hero-statement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.statement-left {
    padding-right: 2rem;
}

.statement-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.statement-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.statement-left .highlight {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.photo-right {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Hero image styles - controlled by Customizer */
.photo-right img,
.hero-photo,
.photo-placeholder img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.photo-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none !important;
    position: relative;
    /* Border, padding, height controlled by Customizer */
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    box-shadow: 0 4px 18px rgba(33,131,136,0.08);
}

.btn:hover {
    background: #17616a;
    color: #fff;
}

/* Image Section */
.promo-image-section {
    padding: 3rem 0;
    text-align: center;
}
.promo-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Training Programs Section */
.training-programs {
    padding: 6rem 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

.service-card {
    background: var(--color-background-white);
    padding: 2.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card .service-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
    color: #666;
}

.service-card li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.service-card .learn-more {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-primary);
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(33,131,136,0.2);
    margin-top: auto;
    align-self: flex-start;
}

.service-card-link:hover .service-card .learn-more {
    background: #17616a;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(33,131,136,0.3);
    text-decoration: none;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: #fafafa;
}

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

.solution-item {
    background: var(--color-background-white);
    padding: 2rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.solution-item h3 {
    color: var(--color-heading);
}

/* Blog & Page Content */
.content-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.page-header {
    padding: 3rem 0;
    background: var(--color-background-light);
    text-align: center;
    border-bottom: 1px solid #eee;
}
.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}
.entry-title {
    margin-bottom: 0.5rem;
}
.entry-title a {
    color: var(--color-heading);
    text-decoration: none;
}
.entry-title a:hover {
    color: var(--color-primary);
}
.entry-meta {
    color: #777;
    font-size: 0.9rem;
}
.post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}
.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.entry-content,
.entry-summary {
    line-height: 1.8;
}
.entry-content h2,
.entry-content h3 {
    margin-top: 2rem;
}
.post-excerpt {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #f0f0f0;
}
.entry-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
.btn-read-more {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: var(--color-footer-bg);
    color: #a9b3c1;
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #a9b3c1;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-section .footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #a9b3c1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #a9b3c1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-statement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statement-left {
        padding-right: 0;
        text-align: center;
    }
    
    .photo-placeholder {
        height: 200px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-branding {
        flex: 1;
    }
    
    /* Show hamburger menu on mobile */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Hide navigation by default on mobile */
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        display: none;
        z-index: 9999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    /* Show navigation when active */
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        padding: 1rem;
        text-align: center;
        display: block;
    }
    
    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--color-background-light);
        margin-left: 1rem;
        border-radius: 0;
        padding: 0;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu .dropdown-menu {
        margin-left: 2rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-statement {
        padding: 3rem 0;
    }
    
    .statement-left h1 {
        font-size: 2rem;
    }
    
    .statement-left p {
        font-size: 1rem;
    }
    
    .photo-placeholder {
        height: 150px;
    }
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

.alignright {
    float: right;
    margin-left: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

/* Custom Page Templates */
.contact-page-grid,
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.about-page-image img {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .contact-page-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
    }
}

/* Top Navigation Bar */
.top-navbar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0.5rem 0;
    position: relative;
    z-index: 100;
}
.top-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-menu li {
    display: flex;
    align-items: center;
}
.top-menu a {
    color: var(--color-heading);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.top-menu a:hover,
.top-menu .current-menu-item a {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}
.top-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    padding: 0;
}
.top-menu-toggle .hamburger {
    width: 26px;
    height: 3px;
    background: var(--color-heading);
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
@media (max-width: 900px) {
    .top-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(33,131,136,0.07);
        border-bottom: 1px solid #e5e5e5;
    }
    .top-menu.open {
        display: flex;
    }
    .top-menu li {
        justify-content: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .top-menu-toggle {
        display: flex;
    }
}

/* Training Solutions Page Styles */
.training-solutions {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3rem 20px;
    animation: fadeInUp 0.8s ease-out;
}

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

.service-block {
    background: #fff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(33,131,136,0.08);
    border: 1px solid #f0f2f3;
    border-left: 4px solid var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInService 0.6s ease-out forwards;
}

.service-block:nth-child(2) { animation-delay: 0.1s; }
.service-block:nth-child(3) { animation-delay: 0.2s; }
.service-block:nth-child(4) { animation-delay: 0.3s; }
.service-block:nth-child(5) { animation-delay: 0.4s; }
.service-block:nth-child(6) { animation-delay: 0.5s; }
.service-block:nth-child(7) { animation-delay: 0.6s; }
.service-block:nth-child(8) { animation-delay: 0.7s; }

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

.service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(33,131,136,0.15);
    border-left-width: 6px;
}

.service-block h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    transition: color 0.3s ease;
}

.service-block h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin-top: 1rem;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block:hover h2::after {
    width: 80px;
}

.service-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.service-block p strong {
    color: var(--color-heading);
    font-weight: 700;
}

.service-block ul {
    margin: 2rem 0;
    padding-left: 0;
    list-style: none;
}

.service-block ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-block ul li:hover {
    opacity: 1;
    transform: translateX(4px);
}

.service-block ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block ul li:hover::before {
    transform: scale(1.1);
    color: #17616a;
}

.service-block .pricing {
    background: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 3px solid var(--color-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-block .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33,131,136,0.03), transparent);
    transition: left 0.6s ease;
}

.service-block:hover .pricing::before {
    left: 100%;
}

.service-block .pricing:hover {
    background: #f2f6f7;
    border-left-color: #17616a;
}

.service-block .pricing p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.service-block .btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: 0 4px 18px rgba(33,131,136,0.15);
    margin-top: 2rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-block .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.service-block .btn:hover::before {
    left: 100%;
}

.service-block .btn:hover {
    background: #17616a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(33,131,136,0.25);
}

.service-block .btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Page Header Enhancement */
.entry-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border-radius: 12px;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.entry-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    position: relative;
}

.entry-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--color-primary);
    display: block;
    margin: 2rem auto 0;
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-block {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-block h2 {
        font-size: 1.6rem;
    }
    
    .entry-title {
        font-size: 2.4rem;
    }
    
    .training-solutions {
        padding: 2rem 15px;
    }
    
    .service-block:hover {
        transform: translateY(-3px);
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .service-block,
    .training-solutions,
    .entry-header {
        animation: none;
    }
    
    .service-block:hover {
        transform: none;
    }
    
    .service-block ul li:hover {
        transform: none;
    }
    
    .service-block .btn:hover {
        transform: none;
    }
}

/* Additional Professional Touches */
.service-block .highlight-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.service-block .highlight-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33,131,136,0.2);
}

.service-block .highlight-box p {
    color: white;
    margin-bottom: 0;
    font-weight: 600;
}

/* Premium Pricing Styles */
.premium-package {
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border: 2px solid #e8f0f1;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    transition: all 0.4s ease;
}

.premium-package::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-package:hover::before {
    opacity: 1;
}

.premium-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(33,131,136,0.15);
}

.package-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.package-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.package-subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
}

.investment-section {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid #e8f0f1;
    text-align: center;
    position: relative;
}

.investment-label {
    font-size: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.investment-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.investment-period {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.value-proposition {
    background: rgba(33,131,136,0.05);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.value-proposition p {
    margin: 0;
    font-style: italic;
    color: var(--color-heading);
    font-weight: 500;
}

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

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f2f3;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    background: rgba(33,131,136,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.premium-cta {
    text-align: center;
    margin-top: 3rem;
}

.premium-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(33,131,136,0.2);
    position: relative;
    overflow: hidden;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(33,131,136,0.3);
    color: white;
}

.savings-badge {
    background: #e8f5f5;
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.exclusive-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.7;
    margin-top: 2rem;
    font-style: italic;
}

/* Responsive Premium Pricing */
@media (max-width: 768px) {
    .premium-package {
        padding: 2rem 1.5rem;
    }
    
    .investment-amount {
        font-size: 2.5rem;
    }
    
    .package-title {
        font-size: 1.8rem;
    }
}

/* Compact Page Header */
.page-intro {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-bottom: 2rem;
}

.page-intro h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}

.page-intro p {
    font-size: 1.2rem;
    color: var(--color-text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Navigation */
.section-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: #f8fafb;
    border-radius: 12px;
}

.nav-btn {
    padding: 12px 24px;
    background: white;
    color: var(--color-heading);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(33,131,136,0.05);
}

.nav-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(33,131,136,0.15);
}

/* Training Sections */
.training-section {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    color: white;
    border-radius: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.section-header h2::after {
    display: none;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Service Block Updates for Sections */
.training-section .service-block h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
}

.training-section .service-block h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin-top: 0.8rem;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-section .service-block:hover h3::after {
    width: 70px;
}

/* Responsive Section Navigation */
@media (max-width: 768px) {
    .section-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 200px;
        text-align: center;
    }
    
    .page-intro h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Training Categories Grid */
.training-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(33,131,136,0.08);
    border: 1px solid #f0f2f3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(33,131,136,0.15);
}

.category-card.featured {
    border: 2px solid var(--color-primary);
    position: relative;
}

.category-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.category-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.category-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    text-align: center;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.category-description {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.category-description p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.category-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.category-highlights li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
}

.category-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 0.9rem;
}

.category-programs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafb;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.program-count {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
}

.price-range {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
}

.category-btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: auto;
}

.category-btn:hover {
    background: #17616a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33,131,136,0.25);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border-radius: 16px;
    margin-top: 4rem;
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-btn {
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(33,131,136,0.2);
    transition: all 0.4s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(33,131,136,0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .training-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
} 

/* Hide submenus by default */
.main-navigation ul ul,
.main-navigation .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
}

/* Show submenu on hover */
.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul,
.main-navigation li:hover > .dropdown-menu,
.main-navigation li:focus-within > .dropdown-menu {
    display: block;
}

/* Style submenu items */
.main-navigation ul ul li {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.main-navigation ul ul a {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    background: white;
    border-bottom: none;
    display: block;
    transition: background 0.2s;
}

.main-navigation ul ul a:hover {
    background: var(--color-background-light);
    color: var(--color-primary);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

/* Force 3-column layout on larger screens */
@media (min-width: 1201px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Ensure 3-column on most desktop screens */
@media (min-width: 993px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(33, 131, 136, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.testimonial-header {
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--color-background-light) 0%, #fff 100%);
    border-bottom: 1px solid rgba(33, 131, 136, 0.1);
    gap: 1rem;
}

.dog-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 6px 20px rgba(33, 131, 136, 0.25);
    border: 3px solid white;
    flex-shrink: 0;
}

.dog-photo-placeholder::before {
    content: '🐕';
    font-size: 2.2rem;
    opacity: 0.7;
}

.dog-photo-placeholder .dog-photo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border: none;
}

.dog-photo-placeholder:has(.dog-photo-img)::before {
    display: none;
}

.testimonial-rating {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding-top: 0.5rem;
}

/* Additional specificity for testimonials */
.testimonials-section .testimonial-rating {
    flex-direction: row !important;
}

.testimonials-section .testimonial-rating .stars {
    display: flex !important;
    flex-direction: row !important;
}

.testimonial-rating .stars {
    display: flex !important;
    flex-direction: row !important;
    gap: 3px;
    align-items: center;
}

.testimonial-rating .star {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: color 0.2s;
    display: inline-block;
}

.testimonial-rating .star.filled {
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.testimonial-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text);
    position: relative;
    padding-left: 1rem;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--color-primary);
    position: absolute;
    left: -0.5rem;
    top: -0.8rem;
    font-family: Georgia, serif;
    opacity: 0.4;
    line-height: 1;
}

.testimonial-footer {
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(247, 249, 250, 0.5);
    border-top: 1px solid rgba(33, 131, 136, 0.1);
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.author-info .author-name {
    font-weight: 700;
    color: var(--color-heading);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author-info .dog-name {
    color: var(--color-primary);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.author-info .author-location {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-badge {
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(33, 131, 136, 0.2);
}

.testimonials-cta {
    text-align: center;
    padding: 3rem 0;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonials-cta .btn {
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(33,131,136,0.2);
}

.testimonials-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33,131,136,0.3);
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) and (min-width: 769px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-header {
        padding: 1.5rem 1rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .testimonial-footer {
        padding: 1rem;
        text-align: center;
        align-items: center;
    }
    
    .service-badge {
        align-self: center;
    }
    
    .dog-photo-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .dog-photo-placeholder .dog-photo-img {
        width: 100%;
        height: 100%;
    }
    
    .dog-photo-placeholder::before {
        font-size: 1.8rem;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin-top: 1rem;
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.read-more-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(33, 131, 136, 0.1);
}

.read-more-text {
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 1rem !important;
}

.read-more-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-link:hover {
    color: #17616a;
    text-decoration: underline;
}

.read-more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

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

.about-photo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 2rem;
}

.photo-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.trainer-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trainer-photo:hover {
    transform: translateY(-5px);
}

.photo-placeholder {
    width: 100%;
    height: 500px;
    background: none !important;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    box-shadow: none;
}

.photo-placeholder p {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.photo-placeholder small {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: left;
    }
    
    .about-photo {
        padding-left: 0;
        justify-content: center;
    }
    
    .photo-container {
        max-width: 300px;
    }
    
    .photo-placeholder {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-text h2::after {
        margin: 1rem auto 0;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
    
    .photo-container {
        max-width: 280px;
    }
    
    .photo-placeholder {
        height: 350px;
        padding: 1.5rem;
    }
}

/* Single Training Solution Page */
.training-solution-content {
    padding: 4rem 0;
    background: white;
}

.training-solution-content .content-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.training-solution-sidebar {
    position: sticky;
    top: 2rem;
}

.solution-card {
    background: var(--color-background-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(33, 131, 136, 0.1);
    box-shadow: 0 8px 32px rgba(33,131,136,0.08);
    text-align: center;
}

.solution-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: block;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.solution-features {
    text-align: left;
    margin-bottom: 2rem;
}

.solution-features h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.solution-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(33, 131, 136, 0.1);
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text);
}

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

.solution-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.solution-cta {
    margin-top: 2rem;
}

.no-content-message {
    background: var(--color-background-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed rgba(33, 131, 136, 0.2);
}

.no-content-message h3 {
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.no-content-message p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.related-training-solutions {
    padding: 5rem 0;
    background: var(--color-background-light);
}

/* Responsive Design for Single Training Solution */
@media (max-width: 992px) {
    .training-solution-content .content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .training-solution-sidebar {
        position: static;
    }
    
    .solution-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .training-solution-content {
        padding: 3rem 0;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        font-size: 2.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
    }
    
    .related-training-solutions {
        padding: 3rem 0;
    }
}

/* About Page Full Content */
.about-full-section {
    padding: 4rem 0;
    background: white;
}

.about-full-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-full-text {
    padding-right: 2rem;
}

.about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-heading);
    font-weight: 500;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(33, 131, 136, 0.1);
}

.about-journey, .about-mission {
    margin-bottom: 3rem;
}

.about-journey h3, .about-mission h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-journey h3::after, .about-mission h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    display: block;
    margin-top: 0.5rem;
}

.about-journey p, .about-mission p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.trainer-photo-full {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    margin-bottom: 2rem;
}

.credentials-box {
    background: linear-gradient(135deg, var(--color-background-light) 0%, #fff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(33, 131, 136, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.credentials-box h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.credentials-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(33, 131, 136, 0.1);
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Professional Credentials Section */
.credentials-section {
    padding: 4rem 0;
    background: var(--color-background-light);
}

.credentials-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 3rem;
}

/* Credentials Grid - Responsive and Flexible */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
}

.credential-image {
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.credential-title {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .credential-image {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .credentials-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .credential-image {
        max-width: 120px;
    }

    .credential-title {
        font-size: 0.85rem;
    }
}

.about-cta {
    padding: 4rem 0;
    background: var(--color-background-light);
    text-align: center;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

/* Service Page Styles */
.service-content-section {
    padding: 4rem 0;
    background: white;
}

.service-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main-content {
    padding-right: 2rem;
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.service-main-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-heading);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-main-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-heading);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.service-main-content h3::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    display: block;
    margin-top: 0.5rem;
}

.service-main-content ul,
.service-main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-main-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-image {
    position: sticky;
    top: 2rem;
}

.image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-photo {
    width: 100%;
    height: auto;
    display: block;
}

.service-pricing-section {
    padding: 4rem 0;
    background: var(--color-background-light);
}

.service-pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.pricing-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-box .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.pricing-box .duration {
    font-size: 1.1rem;
    color: #666;
}

.features-box {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.features-box h3 {
    margin-bottom: 1.5rem;
    color: var(--color-heading);
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Service Pages */
@media (max-width: 992px) {
    .service-content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-main-content {
        padding-right: 0;
    }

    .service-image {
        position: static;
    }

    .pricing-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-content-section,
    .service-pricing-section,
    .service-cta {
        padding: 3rem 0;
    }

    .pricing-box .price {
        font-size: 2.5rem;
    }

    .service-cta h2 {
        font-size: 2rem;
    }
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-full-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-full-text {
        padding-right: 0;
    }
    
    .about-intro .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-full-section {
        padding: 3rem 0;
    }
    
    .about-intro .lead {
        font-size: 1.1rem;
    }
    
    .about-journey h3, .about-mission h3 {
        font-size: 1.5rem;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
        max-width: 100%;
    }
}

/* Contact Page Styles */
.contact-header {
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.contact-info {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info h2 {
    color: var(--color-heading);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 0;
    color: #666;
    font-size: 1rem;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-intro {
    text-align: center;
    margin-bottom: 0;
    font-size: 1.05rem;
    color: #555;
}

.contact-form-intro p {
    margin: 0;
}

.contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* Custom Contact Form Styling */
#contact-form {
    background: white;
    padding: 2rem 2.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

#contact-form .form-group {
    margin-bottom: 1.25rem;
}

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1rem;
}

#contact-form .required {
    color: #e74c3c;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form input[type="tel"]:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 2px rgba(44, 95, 45, 0.08);
}

#contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-form button[type="submit"] {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

#contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

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

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

@media (max-width: 768px) {
    #contact-form {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 0 1rem;
    }
}

/* Newsletter Page Styles */
.newsletter-header {
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.newsletter-intro {
    text-align: center;
    margin-bottom: 0;
}

.newsletter-intro p {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 1rem;
}

.newsletter-form-wrapper {
    max-width: 650px;
    margin: 0 auto 3rem;
}

#newsletter-form {
    background: white;
    padding: 2rem 2.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

#newsletter-form .form-group {
    margin-bottom: 1.25rem;
}

#newsletter-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1rem;
}

#newsletter-form .required {
    color: #e74c3c;
}

#newsletter-form input[type="text"],
#newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

#newsletter-form input[type="text"]:focus,
#newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 2px rgba(44, 95, 45, 0.08);
}

#newsletter-form button[type="submit"] {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

#newsletter-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#newsletter-message {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

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

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

@media (max-width: 768px) {
    #newsletter-form {
        padding: 1.5rem;
    }
    
    .newsletter-form-wrapper {
        padding: 0 1rem;
    }
}

/* ============================================
   Blog Styles
   ============================================ */

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.blog-header-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-description {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-section {
    padding: 2rem 0 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--color-background-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

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

.blog-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

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

.blog-card-category {
    color: var(--color-primary);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--color-heading);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.blog-card-excerpt {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-link:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

.blog-card-link i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link i {
    transform: translateX(4px);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 4rem;
    text-align: center;
}

.blog-pagination .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-numbers {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.blog-pagination .page-numbers i {
    margin: 0 0.25rem;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--color-background-light);
    border-radius: 12px;
}

.no-posts h2 {
    color: var(--color-heading);
    margin-bottom: 1rem;
}

/* ============================================
   Single Blog Post Styles
   ============================================ */

.single-blog-post {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Entry Header */
.single-blog-post .entry-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.entry-meta-top {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.entry-meta-top i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.post-category {
    color: var(--color-primary);
    font-weight: 600;
}

.single-blog-post .entry-title {
    font-size: 2.8rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.entry-excerpt {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* Entry Content */
.single-blog-post .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 3rem;
}

.single-blog-post .entry-content h2,
.single-blog-post .entry-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.single-blog-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-blog-post .entry-content ul,
.single-blog-post .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-blog-post .entry-content li {
    margin-bottom: 0.5rem;
}

.single-blog-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.single-blog-post .entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--color-background-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Entry Footer */
.single-blog-post .entry-footer {
    border-top: 2px solid #e0e0e0;
    padding-top: 2rem;
    margin-top: 3rem;
}

.single-blog-post .entry-footer > div {
    margin-bottom: 1.25rem;
}

.single-blog-post .entry-footer i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.single-blog-post .entry-footer strong {
    color: var(--color-heading);
    margin-right: 0.5rem;
}

.post-categories a,
.post-tags a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover,
.post-tags a:hover {
    color: #17616a;
    text-decoration: underline;
}

/* Post Follow */
.post-follow {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-follow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--color-background-light);
    border-radius: 25px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-follow-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33,131,136,0.2);
}

.social-follow-link i {
    font-size: 1.2rem;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.post-navigation a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--color-background-light);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 120px;
}

.post-navigation a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.nav-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-navigation a:hover .nav-subtitle {
    color: rgba(255,255,255,0.9);
}

.nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1.3;
}

.post-navigation a:hover .nav-title {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header-content h1 {
        font-size: 2.2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .single-blog-post .entry-title {
        font-size: 2rem;
    }

    .entry-meta-top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .blog-header {
        padding: 2.5rem 0;
    }

    .blog-header-content h1 {
        font-size: 1.8rem;
    }

    .blog-description {
        font-size: 1rem;
    }

    .single-blog-post .entry-title {
        font-size: 1.6rem;
    }

    .entry-excerpt {
        font-size: 1rem;
    }
}

/* ============================================
   Modern Blog Page Styles
   ============================================ */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L60 30 L80 30 L65 45 L70 65 L50 50 L30 65 L35 45 L20 30 L40 30 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.blog-hero-description {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Blog Search */
.blog-search-wrapper {
    max-width: 650px;
    margin: 2.5rem auto 0;
}

.blog-search-form {
    margin-bottom: 0.75rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--color-primary);
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 1;
}

.blog-search-input {
    flex: 1;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--color-text);
    background: transparent;
}

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

.blog-search-button {
    padding: 1.1rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-search-button:hover {
    background: #17616a;
}

.blog-search-button i {
    transition: transform 0.3s ease;
}

.blog-search-button:hover i {
    transform: translateX(3px);
}

.search-help-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

.search-help-text i {
    margin-right: 0.3rem;
}

/* No Results Section */
.no-results-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.no-results-icon {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.no-results-icon i {
    opacity: 0.5;
}

.no-results-title {
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.no-results-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.no-results-suggestions {
    background: rgba(33,131,136,0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
}

.no-results-suggestions h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.no-results-suggestions li i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.no-results-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.no-results-button:hover {
    background: #17616a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33,131,136,0.3);
}

.no-results-button i {
    transition: transform 0.3s ease;
}

.no-results-button:hover i {
    transform: translateX(-3px);
}

/* Recent Posts Fallback */
.recent-posts-fallback {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.recent-posts-title {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.recent-posts-title i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* PDF Match Indicator */
.pdf-match-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(33,131,136,0.1);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-left: 3px solid var(--color-primary);
}

.pdf-match-indicator i {
    font-size: 1.1rem;
}

/* Blog Content Section */
.blog-content-section {
    padding: 4rem 0;
}

/* Featured Post */
.blog-featured {
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.blog-featured-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.blog-featured-image {
    position: relative;
    overflow: hidden;
    background: var(--color-background-light);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.featured-badge {
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(33,131,136,0.3);
}

.blog-featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.blog-meta-enhanced i {
    margin-right: 0.4rem;
    color: var(--color-primary);
}

.blog-category-badge {
    background: rgba(33,131,136,0.1);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
}

.reading-time {
    color: #888;
}

.blog-featured-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-featured-title a {
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.blog-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(33,131,136,0.3);
}

.blog-featured-btn:hover {
    background: #17616a;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(33,131,136,0.4);
    color: white;
}

/* Modern Blog Grid */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Modern Blog Card */
.blog-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--color-primary);
}

.blog-card-modern-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--color-background-light);
}

.blog-card-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .overlay-icon {
    transform: scale(1);
}

.blog-card-modern-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-modern-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.category-dot {
    color: #ddd;
}

.category-modern {
    color: var(--color-primary);
    font-weight: 700;
}

.blog-card-modern-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 0;
}

.blog-card-modern-title a {
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-modern-title a:hover {
    color: var(--color-primary);
}

.blog-card-modern-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 0.95rem;
}

.blog-card-modern-link:hover {
    gap: 0.75rem;
    color: #17616a;
}

.blog-card-modern-link i {
    transition: transform 0.3s ease;
}

.blog-card-modern:hover .blog-card-modern-link i {
    transform: translateX(4px);
}

/* Modern Pagination */
.blog-pagination-modern {
    margin-top: 4rem;
    text-align: center;
}

.blog-pagination-modern .pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.blog-pagination-modern .page-numbers {
    padding: 0.85rem 1.4rem;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.blog-pagination-modern .page-numbers i {
    margin: 0 0.25rem;
}

/* No Posts Modern */
.no-posts-modern {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--color-background-light);
    border-radius: 20px;
}

.no-posts-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.no-posts-modern h2 {
    color: var(--color-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-posts-modern p {
    color: #666;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design for Modern Blog */
@media (max-width: 992px) {
    .blog-featured-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-image {
        min-height: 350px;
    }
    
    .blog-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 3.5rem 0;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-description {
        font-size: 1.1rem;
    }
    
    .blog-search-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .blog-search-button .button-text {
        display: none;
    }
    
    .blog-search-button {
        padding: 1.1rem 1.5rem;
    }
    
    .blog-featured-content {
        padding: 2rem;
    }
    
    .blog-featured-title {
        font-size: 2rem;
    }
    
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 2.5rem 0;
    }
    
    .blog-hero-title {
        font-size: 2rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
    }
    
    .blog-featured-content {
        padding: 1.5rem;
    }
    
    .blog-featured-title {
        font-size: 1.6rem;
    }
    
    .blog-meta-enhanced {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .blog-card-modern-content {
        padding: 1.5rem;
    }
}

/* ============================================
   PUPPY TRAINING PAGE - REDESIGNED
   ============================================ */

/* Page Introduction */
.puppy-training-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
}

.puppy-training-intro h1 {
    font-size: 3rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.puppy-training-intro .intro-tagline {
    font-size: 1.3rem;
    color: var(--color-text);
    line-height: 1.6;
    opacity: 0.85;
}

/* Services Grid Layout */
.puppy-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Individual Service Card */
.puppy-service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(33, 131, 136, 0.08);
    border: 1px solid rgba(33, 131, 136, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.puppy-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(33, 131, 136, 0.18);
    border-color: var(--color-primary);
}

/* Service Card Header with Badge */
.puppy-service-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.puppy-service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.service-badge.essentials {
    background: rgba(255, 193, 7, 0.3);
}

.service-badge.advanced {
    background: rgba(156, 39, 176, 0.3);
}

.puppy-service-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.puppy-service-header h2::after {
    display: none;
}

.service-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Service Card Body */
.puppy-service-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.service-description strong {
    color: var(--color-heading);
}

/* Service Highlights */
.service-highlights {
    margin-bottom: 2rem;
}

.service-highlights h3 {
    font-size: 1.2rem;
    color: var(--color-heading);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-highlights h3::before {
    content: '✨';
    font-size: 1rem;
}

.service-highlights h3::after {
    display: none;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.highlights-list li:hover {
    background: linear-gradient(135deg, #f0f7f8 0%, #fff 100%);
    transform: translateX(4px);
}

.highlights-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Pricing Section in Card */
.service-pricing-box {
    background: linear-gradient(135deg, #f8fafb 0%, #eef4f5 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: auto;
    border: 2px solid rgba(33, 131, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.service-pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #17616a);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(33, 131, 136, 0.2);
}

.pricing-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-row.main-price {
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.pricing-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.pricing-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.pricing-row.main-price .pricing-label {
    font-size: 1.05rem;
    color: var(--color-heading);
}

.pricing-row.main-price .pricing-value {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.pricing-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* Service CTA Button */
.service-cta {
    margin-top: 1.5rem;
}

.service-cta .btn-service {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(33, 131, 136, 0.25);
    position: relative;
    overflow: hidden;
}

.service-cta .btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-cta .btn-service:hover::before {
    left: 100%;
}

.service-cta .btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 131, 136, 0.35);
    color: white;
}

/* Session Format Section */
.session-format {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f2f3;
}

.session-format h3 {
    font-size: 1.3rem;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    text-align: center;
}

.session-format h3::after {
    display: none;
}

.format-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.format-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafb 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #e8f0f1;
    transition: all 0.3s ease;
}

.format-option:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(33, 131, 136, 0.1);
}

.format-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #17616a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.format-details h4 {
    font-size: 1rem;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.format-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Bottom CTA Section */
.puppy-training-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #17616a 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.puppy-training-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.puppy-training-cta h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.puppy-training-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--color-primary);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Responsive Design for Puppy Training */
@media (max-width: 992px) {
    .puppy-services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .puppy-training-intro h1 {
        font-size: 2.5rem;
    }
    
    .format-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .puppy-training-intro {
        padding: 1rem 0;
        margin-bottom: 2.5rem;
    }
    
    .puppy-training-intro h1 {
        font-size: 2rem;
    }
    
    .puppy-training-intro .intro-tagline {
        font-size: 1.1rem;
    }
    
    .puppy-service-header {
        padding: 1.5rem 1.5rem;
    }
    
    .puppy-service-header h2 {
        font-size: 1.5rem;
    }
    
    .puppy-service-body {
        padding: 1.5rem;
    }
    
    .service-pricing-box {
        padding: 1.5rem;
    }
    
    .pricing-row.main-price .pricing-value {
        font-size: 1.5rem;
    }
    
    .puppy-training-cta {
        padding: 3rem 1.5rem;
    }
    
    .puppy-training-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ============================================
   UNIVERSAL TRAINING/SERVICE PAGE STYLES
   Professional, clean design for service pages
   ============================================ */

/* Service Page Layout Override */
.page-template-page-service .service-content-layout {
    display: block;
}

.page-template-page-service .service-main-content {
    max-width: 900px;
    margin: 0 auto;
    padding-right: 0;
}

.page-template-page-service .service-image {
    display: none;
}

/* Entry content max-width for readability */
.entry-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Universal service-block styling - refined professional look */
.service-main-content .service-block,
.entry-content .service-block {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 3.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eef0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-main-content .service-block:hover,
.entry-content .service-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Service block header - subtle, professional */
.service-main-content .service-block h2,
.entry-content .service-block h2 {
    background: var(--color-heading);
    color: white;
    padding: 1.75rem 2.5rem;
    margin: 0 0 0 0;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 3px solid var(--color-primary);
}

.service-main-content .service-block h2::before,
.entry-content .service-block h2::before {
    display: none;
}

.service-main-content .service-block h2::after,
.entry-content .service-block h2::after {
    display: none;
}

/* Lead paragraph - elegant styling */
.service-main-content .service-block p.lead,
.entry-content .service-block p.lead {
    padding: 1.75rem 2.5rem 0;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.service-main-content .service-block p.lead em,
.entry-content .service-block p.lead em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}

/* Body paragraphs */
.service-main-content .service-block > p:not(.lead),
.entry-content .service-block > p:not(.lead) {
    padding: 0 2.5rem;
    color: #4a5568;
    line-height: 1.75;
}

/* List styling - clean and professional */
.service-main-content .service-block ul,
.entry-content .service-block ul {
    padding: 0 2.5rem 1.5rem;
    margin: 1rem 0 0;
    list-style: none;
}

.service-main-content .service-block ul li,
.entry-content .service-block ul li {
    background: #f9fafb;
    padding: 1rem 1.25rem 1rem 3rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border: 1px solid #edf2f4;
    transition: all 0.2s ease;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-main-content .service-block ul li:hover,
.entry-content .service-block ul li:hover {
    background: #f3f7f8;
    border-color: #d1dfe3;
}

.service-main-content .service-block ul li::before,
.entry-content .service-block ul li::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.service-main-content .service-block ul li strong,
.entry-content .service-block ul li strong {
    color: var(--color-heading);
    font-weight: 600;
}

/* Premium package / pricing - refined */
.service-main-content .premium-package,
.entry-content .premium-package {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 1.5rem 2.5rem 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
}

.service-main-content .premium-package::before,
.entry-content .premium-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 12px 12px 0 0;
}

.service-main-content .premium-package p,
.entry-content .premium-package p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #4a5568;
}

.service-main-content .premium-package p:last-child,
.entry-content .premium-package p:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.service-main-content .premium-package p strong,
.entry-content .premium-package p strong {
    color: var(--color-heading);
    font-weight: 600;
}

/* H3 styling for section headers */
.service-main-content h3,
.page-template-page-service .service-main-content h3,
.entry-content h3 {
    padding: 0;
    margin: 2.5rem 0 1.25rem;
    color: var(--color-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-main-content h3::after,
.entry-content h3::after {
    display: none;
}

/* Horizontal rules - subtle dividers */
.service-main-content hr,
.entry-content hr {
    margin: 3rem 0;
    border: none;
    height: 1px;
    background: #e2e8f0;
}

/* Session format box - professional card */
.service-main-content .session-format,
.entry-content .session-format {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.service-main-content .session-format h3,
.entry-content .session-format h3 {
    font-size: 1.15rem;
    color: var(--color-heading);
    margin: 0 0 1.5rem 0;
    text-align: center;
    padding: 0;
}

.service-main-content .format-options,
.entry-content .format-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-main-content .format-option,
.entry-content .format-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #edf2f4;
    transition: all 0.2s ease;
}

.service-main-content .format-option:hover,
.entry-content .format-option:hover {
    border-color: var(--color-primary);
    background: #f3f8f8;
}

.service-main-content .format-icon,
.entry-content .format-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.service-main-content .format-details h4,
.entry-content .format-details h4 {
    font-size: 0.95rem;
    color: var(--color-heading);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.service-main-content .format-details p,
.entry-content .format-details p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    padding: 0;
}

/* CTA Buttons - professional styling */
.service-main-content .btn,
.entry-content .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    border: none;
}

.service-main-content .btn:hover,
.entry-content .btn:hover {
    background: #17616a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 131, 136, 0.25);
    color: white;
}

/* Highlight box / Final CTA - professional gradient */
.service-main-content .highlight-box,
.entry-content .highlight-box {
    background: var(--color-heading);
    border-radius: 16px;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.service-main-content .highlight-box::before,
.entry-content .highlight-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
}

.service-main-content .highlight-box h3,
.entry-content .highlight-box h3 {
    padding: 0;
    margin: 0 0 0.75rem 0;
    color: white;
    font-size: 1.5rem;
}

.service-main-content .highlight-box p,
.entry-content .highlight-box p {
    color: rgba(255, 255, 255, 0.9);
}

.service-main-content .highlight-box .btn,
.entry-content .highlight-box .btn {
    background: white;
    color: var(--color-heading);
    margin: 0.5rem 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
}

.service-main-content .highlight-box .btn:hover,
.entry-content .highlight-box .btn:hover {
    background: #f8fafc;
    color: var(--color-heading);
    transform: translateY(-2px);
}

/* Service page CTA section enhancement */
.page-template-page-service .service-cta {
    background: var(--color-heading);
    padding: 3.5rem 0;
    margin-top: 3rem;
}

.page-template-page-service .service-cta .container {
    text-align: center;
}

.page-template-page-service .service-cta h2 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-template-page-service .service-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.page-template-page-service .service-cta .btn {
    background: white;
    color: var(--color-heading);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.page-template-page-service .service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive for service pages */
@media (max-width: 768px) {
    .entry-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .service-main-content .service-block ul,
    .entry-content .service-block ul,
    .service-main-content .service-block > p:not(.lead),
    .entry-content .service-block > p:not(.lead),
    .service-main-content .service-block p.lead,
    .entry-content .service-block p.lead,
    .service-main-content .service-block h2,
    .entry-content .service-block h2 {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .service-main-content .premium-package,
    .entry-content .premium-package {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
    
    .service-main-content .session-format,
    .entry-content .session-format {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .service-main-content .format-options,
    .entry-content .format-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-main-content .service-block h2,
    .entry-content .service-block h2 {
        font-size: 1.35rem;
        padding: 1.25rem 1.25rem;
    }
    
    .service-main-content .service-block p.lead,
    .entry-content .service-block p.lead {
        padding-top: 1.25rem;
        font-size: 1rem;
    }
    
    .service-main-content .highlight-box,
    .entry-content .highlight-box {
        margin: 2rem -1rem 0;
        border-radius: 0;
    }
}

/* Featured Image - Float Right with Professional Styling */
.featured-image-container {
    margin: 2em 0;
}

.featured-image-container > div {
    float: right;
    margin: 0 0 1.5em 2em;
    max-width: 400px;
    width: 100%;
}

.featured-image-container img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .featured-image-container > div {
        float: none;
        margin: 0 auto 2em;
        max-width: 100%;
    }
}
