/*
Theme Name: SleekCard SEO Pro
Theme URI: https://wordcraftstack.com/sleekcard-pro
Author: WordCraftStack
Description: Premium Local SEO Business Card Theme with advanced Schema, unlimited services, testimonials, team sections, Google Fonts, color presets, and more.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sleekcard-seo-pro

Copyright (C) 2026 WordCraftStack
SleekCard SEO Pro is distributed under the terms of the GNU GPL
*/

/* ===================================================================
   CSS Custom Properties
   =================================================================== */
:root {
    --accent-color: #2e7d32;
    --accent-bg-soft: rgba(46, 125, 50, 0.1);
    --accent-hover: #1e5d22;
    --header-bg: #000000;
    --footer-bg: #f8f8f8;
    --text-color: #1a1a1a;
    --heading-color: #1a1a1a;
    --link-color: #2e7d32;
    --hero-overlay: rgba(0, 0, 0, 0.5);
    --hero-min-height: 500px;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --bg-light: #f8f8f8;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

/* ===================================================================
   Reset & Base
   =================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    line-height: 1.3;
    margin-top: 0;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ===================================================================
   Accessibility
   =================================================================== */
.skip-link {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 15px;
    text-decoration: none;
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 100000;
    border-radius: var(--radius-sm);
    transition: top var(--transition);
}

.skip-link:focus {
    top: 10px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--white);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: var(--accent-color);
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===================================================================
   Links & Buttons
   =================================================================== */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.button,
button,
input[type="submit"],
input[type="button"] {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), transform var(--transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: var(--accent-hover);
    text-decoration: none;
    transform: translateY(-1px);
}

.button-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.button-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.button-white {
    background: var(--white);
    color: var(--accent-color);
}

.button-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.button-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* ===================================================================
   Site Header
   =================================================================== */
.site-header {
    background-color: var(--header-bg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.site-header h1 {
    color: var(--white);
    font-size: 42px;
    margin: 0 0 10px;
}

.site-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

.site-title {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
}

.site-title a {
    color: var(--white);
    text-decoration: none;
}

.site-title a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.site-description {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* === Header Layout: Default === */
.header-layout-default .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-layout-default .site-branding {
    justify-content: center;
    text-align: center;
}

/* === Header Layout: Centered === */
.header-layout-centered .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.header-layout-centered .site-branding {
    justify-content: center;
}

/* === Header Layout: Logo + Nav Row === */
.header-layout-inline .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === Header Layout: Transparent Overlay === */
.header-layout-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: none;
}

.header-layout-transparent .site-title a,
.header-layout-transparent .main-navigation a {
    color: var(--white);
}

/* === Header Layout: Stacked === */
.header-layout-stacked .site-branding {
    text-align: center;
    justify-content: center;
    padding: 20px 0;
}

.header-layout-stacked .main-navigation {
    border-top: 1px solid var(--border-color);
}

/* ===================================================================
   Main Navigation
   =================================================================== */
.main-navigation {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    z-index: 99;
}

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

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 15px 18px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition), background var(--transition);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item > a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Sub-menus */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    min-width: 220px;
    z-index: 100;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
}

.main-navigation li:hover > ul {
    display: flex;
}

.main-navigation ul ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.main-navigation ul ul a:hover {
    background: var(--accent-bg-soft);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    position: relative;
    z-index: 1000;
}

.menu-toggle:hover {
    background: var(--accent-hover);
    transform: none;
}

.menu-toggle .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===================================================================
   Hero Section
   =================================================================== */
.hero-section {
    position: relative;
    min-height: var(--hero-min-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 25px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin: 0 0 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0 0 30px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===================================================================
   Services Section
   =================================================================== */
.services-section {
    padding: 80px 0;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-section .section-header h2 {
    font-size: 36px;
    margin: 0 0 15px;
}

.services-section .section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--accent-bg-soft);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--accent-color);
}

.service-card .service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.service-card p {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.7;
}

.service-card .service-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.service-card .service-link::after {
    content: "\2192";
}

/* Legacy service-item support */
.services-inner {
    display: flex;
    gap: 20px;
}

.service-item {
    flex: 1;
    padding: 30px 20px;
    background: var(--accent-bg-soft);
    border-radius: 12px;
}

.service-number {
    display: inline-block;
    color: var(--white);
    background: var(--accent-color);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

/* ===================================================================
   Testimonials Section
   =================================================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
    font-size: 36px;
    margin: 0 0 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: "\201C";
    font-size: 60px;
    color: var(--accent-bg-soft);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-top: 20px;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0 0 3px;
    font-size: 16px;
}

.testimonial-info span {
    font-size: 14px;
    color: #666;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating .star {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-rating .star.empty {
    color: #ddd;
}

/* Carousel Mode */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-track .testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    margin: 0 15px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    padding: 0;
}

.carousel-btn:hover {
    background: var(--accent-hover);
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.carousel-dot.active {
    background: var(--accent-color);
}

/* ===================================================================
   Team Section
   =================================================================== */
.team-section {
    padding: 80px 0;
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section .section-header h2 {
    font-size: 36px;
    margin: 0 0 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-bg-soft);
}

.team-card h3 {
    font-size: 20px;
    margin: 0 0 5px;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 15px;
    display: block;
}

.team-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-bg-soft);
    color: var(--accent-color);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.team-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.team-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===================================================================
   Business Hours
   =================================================================== */
.business-hours {
    padding: 60px 0;
}

.hours-table {
    max-width: 500px;
    margin: 0 auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hours-day {
    font-weight: 600;
}

.hours-time {
    color: #666;
}

.open-now-badge {
    display: inline-block;
    background: #4caf50;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

.closed-badge {
    display: inline-block;
    background: #f44336;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
}

/* ===================================================================
   Contact Form
   =================================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section .section-header h2 {
    font-size: 36px;
    margin: 0 0 15px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    max-width: 100%;
}

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

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-submit {
    margin-top: 10px;
}

.contact-form .honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.contact-form .form-message {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    display: none;
}

.contact-form .form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contact-form .form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Google Maps Embed */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ===================================================================
   Local SEO / Locations
   =================================================================== */
.local-seo-section {
    padding: 60px 0;
}

.local-seo-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.location-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--accent-color);
    border-radius: var(--radius-sm);
    margin: 5px;
    color: var(--accent-color);
    font-size: 14px;
    transition: all var(--transition);
}

.location-tag:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* ===================================================================
   Section Headers (Shared)
   =================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin: 0 0 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================================================
   Content & Blog
   =================================================================== */
.site-main {
    min-height: 50vh;
}

#primary {
    margin-top: 40px;
}

.content-area {
    display: flex;
    gap: 40px;
}

.content-area .site-content {
    flex: 1;
    min-width: 0;
}

.content-area .widget-area {
    width: 300px;
    flex-shrink: 0;
}

.page-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.page-title {
    font-size: 32px;
    margin: 0 0 10px;
    color: var(--heading-color);
}

.archive-description {
    color: #666;
    margin-top: 10px;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 28px;
    margin: 0 0 15px;
    line-height: 1.3;
}

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

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

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-meta a {
    color: #666;
}

.entry-meta a:hover {
    color: var(--accent-color);
}

.post-thumbnail {
    margin-bottom: 25px;
}

.post-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.entry-content {
    line-height: 1.8;
    margin-bottom: 30px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 40px;
    font-size: 14px;
}

.tags-links a {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-bg-soft);
    border-radius: 3px;
    margin: 2px;
    color: var(--accent-color);
    text-decoration: none;
}

.tags-links a:hover {
    background: var(--accent-color);
    color: var(--white);
}

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog archive posts */
.archive-posts article,
.search-results article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.archive-posts article:last-child,
.search-results article:last-child {
    border-bottom: none;
}

/* ===================================================================
   Post Navigation
   =================================================================== */
.post-navigation {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

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

.post-navigation a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
}

.post-navigation a:hover {
    color: var(--accent-color);
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 700;
}

/* ===================================================================
   Pagination
   =================================================================== */
.pagination {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-block;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition);
}

.page-numbers:hover {
    background: var(--accent-bg-soft);
    border-color: var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
}

.page-numbers.current {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

/* ===================================================================
   Breadcrumbs
   =================================================================== */
.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 0;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #999;
}

/* ===================================================================
   Comments
   =================================================================== */
.comments-area {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
}

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

.comment-list .comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.comment-list .children {
    list-style: none;
    margin-left: 40px;
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-metadata {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #666;
}

.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 16px;
}

.comment-form textarea {
    min-height: 150px;
}

.no-comments {
    font-style: italic;
    color: #666;
}

/* ===================================================================
   Sidebar / Widgets
   =================================================================== */
.widget-area .widget {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.widget-title {
    font-size: 18px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

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

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
    border-bottom: none;
}

.widget ul a {
    color: var(--text-color);
}

.widget ul a:hover {
    color: var(--accent-color);
}

/* Recent Posts Widget (Pro) */
.widget-recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.widget-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.widget-recent-post .post-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.4;
}

.widget-recent-post .post-info h4 a {
    color: var(--text-color);
}

.widget-recent-post .post-info h4 a:hover {
    color: var(--accent-color);
}

.widget-recent-post .post-date {
    font-size: 12px;
    color: #999;
}

/* Social Icons Widget */
.social-icons-widget {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons-widget a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-bg-soft);
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition);
}

.social-icons-widget a:hover {
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.social-icons-widget svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* CTA Widget */
.cta-widget {
    background: var(--accent-color) !important;
    color: var(--white);
    text-align: center;
}

.cta-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    opacity: 0.9;
}

.cta-widget .button {
    background: var(--white);
    color: var(--accent-color);
    margin-top: 10px;
}

.cta-widget .button:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

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

/* Footer Layout: Two Column */
.footer-layout-two .footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Footer Layout: Three Column */
.footer-layout-three .footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Footer Layout: Four Column */
.footer-layout-four .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-columns {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Layout: Minimal */
.footer-layout-minimal .footer-columns {
    display: none;
}

/* Footer common */
.footer-column .widget {
    margin-bottom: 20px;
}

.footer-column .widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--heading-color);
    border-bottom: none;
    padding-bottom: 0;
}

.footer-contact p {
    margin: 8px 0;
    line-height: 1.8;
}

.footer-contact strong {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav {
    padding: 0;
    margin: 0;
    border: none;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
}

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

.copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ===================================================================
   404 Error Page
   =================================================================== */
.error-404 {
    text-align: center;
    padding: 80px 0;
}

.error-404 .page-header {
    border: none;
}

.error-404 .page-title {
    font-size: 80px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.error-404 .page-subtitle {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .page-content p {
    color: #666;
    margin-bottom: 30px;
}

/* ===================================================================
   Forms
   =================================================================== */
.search-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 20px auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
}

.search-form button,
.search-form input[type="submit"] {
    flex-shrink: 0;
}

/* ===================================================================
   Page Templates
   =================================================================== */
/* Full Width */
.template-full-width .content-area {
    display: block;
}

.template-full-width .widget-area {
    display: none;
}

/* Landing Page */
.template-landing .main-navigation,
.template-landing .site-footer .footer-main {
    display: none;
}

.template-landing .content-area {
    display: block;
}

/* ===================================================================
   Scroll Animations
   =================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-fade-left {
    transform: translateX(-30px);
}

.animate-on-scroll.animate-fade-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-fade-right {
    transform: translateX(30px);
}

.animate-on-scroll.animate-fade-right.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.95);
}

.animate-on-scroll.animate-scale.animated {
    transform: scale(1);
}

/* Staggered animation delay for grid items */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Animations disabled via customizer */
.no-animations .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ===================================================================
   Responsive Design
   =================================================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-layout-four .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .services-inner {
        flex-wrap: wrap;
    }

    .service-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .site-header {
        padding: 60px 0;
    }

    .site-header h1 {
        font-size: 28px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

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

    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        padding: 10px 0;
        margin-top: 10px;
        gap: 0;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 12px 20px;
        text-align: center;
    }

    .main-navigation a:hover {
        background: var(--accent-bg-soft);
    }

    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.03);
    }

    /* Hero */
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* Sections */
    .services-section,
    .testimonials-section,
    .team-section,
    .contact-section {
        padding: 50px 0;
    }

    .section-header h2,
    .services-section .section-header h2,
    .testimonials-section .section-header h2,
    .team-section .section-header h2,
    .contact-section .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .services-inner {
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        flex: 1 1 100%;
        width: 100%;
    }

    /* Content */
    .content-area {
        flex-direction: column;
    }

    .content-area .widget-area {
        width: 100%;
    }

    .page-title {
        font-size: 26px;
    }

    .entry-title {
        font-size: 24px;
    }

    .post-navigation .nav-links {
        flex-direction: column;
    }

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

    .comment-list .children {
        margin-left: 20px;
    }

    /* Footer */
    .footer-layout-two .footer-columns,
    .footer-layout-three .footer-columns,
    .footer-layout-four .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
    }

    .page-numbers {
        padding: 6px 10px;
        font-size: 14px;
    }
}

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

    .container {
        padding: 0 15px;
    }

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

    .hero-content p {
        font-size: 15px;
    }

    .page-title {
        font-size: 22px;
    }

    .entry-title {
        font-size: 20px;
    }

    .comment-body {
        flex-direction: column;
    }

    .comment-list .children {
        margin-left: 0;
    }

    .services-section,
    .testimonials-section,
    .team-section,
    .contact-section {
        padding: 40px 0;
    }
}

/* ===================================================================
   Print Styles
   =================================================================== */
@media print {
    .site-header,
    .main-navigation,
    .site-footer,
    .skip-link,
    .breadcrumbs,
    .post-navigation,
    .comments-area,
    .comment-respond,
    .widget-area,
    .pagination,
    .hero-section,
    .contact-form {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

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

    img {
        max-width: 100% !important;
    }
}
