/*
Theme Name: Lepszy Świat Child
Theme URI: https://lepszyswiat.org
Description: Motyw potomny dla Fundacji Lepszy Świat - pomagamy zwierzętom
Author: Fundacja Lepszy Świat
Author URI: https://lepszyswiat.org
Template: twentytwentyfive
Version: 1.4.0
Text Domain: lepszyswiat-child
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Merriweather:wght@300;400;700&display=swap');

/* ==========================================================================
   Zmienne CSS - Kolorystyka zgodna z mockupem
   ========================================================================== */

:root {
    --primary-orange: #B85C00;
    --dark-orange: #B24801;
    --light-orange: #f39c12;
    --soft-cream: #fef9f3;
    --dark-text: #2c3e50;
    --light-gray: #f4f6f8;
    --accent-green: #4a7c59;
    --warm-peach: #ffb88c;
    --color-white: #FFFFFF;
    --color-black: #000000;

    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Merriweather', serif;

    /* Font Sizes */
    --font-size-p: 16px;     /* Paragraf */
    --font-size-a: 14px;     /* Link */
    --font-size-h1: 52px;    /* Nagłówek H1 */
    --font-size-h2: 32px;    /* Nagłówek H2 */
    --font-size-h3: 20px;    /* Nagłówek H3 */
    --font-size-h4: 18px;    /* Nagłówek H4 */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 25px;
    --border-radius-xl: 30px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset i podstawowe style
   ========================================================================== */

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

body {
    font-family: var(--font-primary) !important;
    color: var(--dark-text) !important;
    background-color: var(--soft-cream) !important;
    font-size: var(--font-size-p) !important;
    line-height: 1.6 !important;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-h1) !important;
}

h2 {
    font-size: var(--font-size-h2) !important;
}

h3 {
    font-size: var(--font-size-h3) !important;
}

h4 {
    font-size: var(--font-size-h4) !important;
}

p {
    font-size: var(--font-size-p) !important;
}

a {
    font-size: var(--font-size-a) !important;
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    background: white;
    padding: 0.65rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.main-navigation {
    margin-left: auto;
}

/* Header Tax Logo */
.header-tax-logo {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.header-tax-logo a {
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 0;
}

.header-tax-logo a:hover {
    transform: scale(1.05);
}

.header-tax-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.header-cta {
    display: none;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.site-logo i.fa-paw {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-orange);
    line-height: 35px;
    text-align: center;
}

/* Custom Logo */
.custom-logo-link {
    display: inline-block;
    line-height: 0;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/*.custom-logo-link:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
/*}*/

.custom-logo {
    height: auto;
    max-height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--color-black);
    font-weight: 300;
    position: relative;
    padding-bottom: 5px;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.main-navigation a:hover {
    border-bottom-color: var(--dark-orange);
}

/* Dropdown Menu */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item-has-children.active > a::after {
    transform: rotate(180deg);
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.main-navigation .menu-item-has-children:hover .sub-menu,
.main-navigation .menu-item-has-children.active .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-navigation .sub-menu li {
    margin: 0;
}

.main-navigation .sub-menu a {
    color: var(--dark-text);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-bottom: none;
    width: 100%;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: var(--soft-cream);
    color: var(--primary-orange);
}

.header-cta .btn {
    background: white;
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: var(--soft-cream);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.95) 0%, rgba(243, 156, 18, 0.9) 100%);
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
    text-align: left;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path fill="rgba(255,255,255,0.05)" d="M0 100 Q300 50 600 100 T1200 100 L1200 200 L0 200 Z"/></svg>');
    background-size: cover;
}

/*.hero-content {*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*    z-index: 2;*/
/*}*/

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: var(--font-size-h4);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}
/* ==========================================================================
   Przyciski
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: var(--font-size-p);
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

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

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

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    background: white;
    padding: 2.5rem 1.5rem;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: var(--font-size-h2);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.35rem;
    display: block;
}

.stat-label {
    font-size: var(--font-size-a);
    color: var(--dark-text);
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-h4);
    color: var(--dark-text);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */

.mission-section {
    padding: 6rem 2rem;
    background: var(--soft-cream);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h2);
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: var(--font-size-p);
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.mission-grid, .mission-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mission-card, .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
}

.mission-card:hover, .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: var(--font-size-a);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.mission-image {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--primary-orange) 100%);
    border-radius: var(--border-radius-xl);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    box-shadow: 0 20px 60px rgba(230, 126, 34, 0.3);
}

/* ==========================================================================
   Partners Section
   ========================================================================== */

.partners-section {
    padding: 5rem 2rem;
    background: white;
}

.partners-slider-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Partners slider logo styling */
.partners-slider-wrapper img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-slider-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================================
   Help Section
   ========================================================================== */

.help-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, white 0%, var(--light-gray) 100%);
}

.help-container {
    max-width: 1400px;
    margin: 0 auto;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 2rem;
    justify-content: center;
}

.help-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.help-card:hover::before {
    transform: scaleX(1);
}

.help-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.help-icon, .help-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.help-card h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-family: var(--font-primary);
    font-weight: 600;
}

.help-card p {
    color: #666;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.help-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.help-card a {
    color: var(--dark-orange);
    background: var(--light-gray);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
    align-self: center;
}

.help-card a:hover {
    gap: 1rem;
    color: var(--dark-orange);
    background: var(--light-gray);

}

/* ==========================================================================
   Animals Grid
   ========================================================================== */

.animals-section {
    padding: 6rem 2rem;
    background: var(--soft-cream);
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.animal-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
}

.animal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.animal-image-link {
    display: block;
    text-decoration: none;
}

.animal-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.animal-image-link:hover .animal-image {
    transform: scale(1.05);
}

.animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
}

.placeholder-image .dashicons {
    font-size: 80px;
    color: white;
}

.animal-info {
    padding: 1.25rem;
}

.animal-category {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-size: var(--font-size-a);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.animal-info h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.animal-info h3 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: var(--transition);
}

.animal-info h3 a:hover {
    color: var(--primary-orange);
}

.animal-meta, .animal-details {
    color: #666;
    margin-bottom: 0.75rem;
}

.animal-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.tag, .meta-item {
    padding: 0.25rem 0.65rem;
    background: var(--light-gray);
    border-radius: 15px;
    font-size: var(--font-size-a);
    color: var(--dark-text);
}

.animal-excerpt {
    color: #666;
    margin-bottom: 0.75rem;
}

.adopt-btn, .animal-card .btn-primary {
    width: 100%;
    padding: 0.65rem;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.adopt-btn:hover, .animal-card .btn-primary:hover {
    background: var(--dark-orange);
    transform: scale(1.02);
}

/* ==========================================================================
   News Grid
   ========================================================================== */

.news-section {
    padding: 6rem 2rem;
    background: white;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.news-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.news-image {
    height: 320px;
    background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #616161;
    font-size: var(--font-size-a);
    margin-bottom: 0.75rem;
}

.news-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-category {
    display: inline-block;
    width: fit-content;
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-size: var(--font-size-a);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-content h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    line-height: 1.4;
    font-weight: 600;
}

.news-excerpt {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more, .news-card .btn-secondary, .animal-card .btn-secondary {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
    align-self: center;
}

.news-card .btn-secondary, .animal-card .btn-secondary {
    width: 100%;
}

.read-more:hover, .news-card .btn-secondary:hover {
    gap: 1rem;
    color: var(--dark-orange);
}

/* ==========================================================================
   Shelter (Przytulisko) Grid
   ========================================================================== */

.shelter-section {
    padding: 6rem 2rem;
    background: var(--soft-cream);
}

.shelter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 420px));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.shelter-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shelter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.shelter-image {
    height: 320px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
}

.shelter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shelter-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #616161;
    font-size: var(--font-size-a);
    margin-bottom: 0.75rem;
}

.shelter-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shelter-content h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    line-height: 1.4;
    font-weight: 600;
}

.shelter-excerpt {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    flex-grow: 1;
}

.shelter-card .btn-primary {
    width: 100%;
    margin-top: auto;
}

/* ==========================================================================
   Single Post (Aktualnosci/Zwierzeta)
   ========================================================================== */

.single-post {
    background: var(--soft-cream);
}

.post-header {
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    text-align: center;
    color: white;
}

.post-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-a);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.post-title {
    font-family: var(--font-heading) !important;
    font-size: var(--font-size-h1) !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: var(--font-size-a);
    opacity: 0.95;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    background: white;
    padding: 2rem;
}

.post-featured-image img {
    display: block;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.post-content {
    background: white;
    padding: 3rem 2rem;
}

.post-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--font-size-p);
    line-height: 1.8;
    color: var(--dark-text);
}

.post-content-inner h2 {
    font-size: var(--font-size-h2) !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.post-content-inner h3 {
    font-size: var(--font-size-h3) !important;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.post-content-inner p {
    margin-bottom: 1.25rem;
}

.post-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
}

.post-content-inner ul,
.post-content-inner ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.post-content-inner li {
    margin-bottom: 0.5rem;
}

.post-footer {
    background: var(--light-gray);
    padding: 3rem 2rem;
}

.post-navigation {
    max-width: 1000px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.nav-previous:hover,
.nav-next:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.nav-previous a,
.nav-next a {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--dark-text);
}

.nav-subtitle {
    font-size: var(--font-size-a);
    color: var(--primary-orange);
    font-weight: 600;
}

.nav-title {
    font-size: var(--font-size-h4);
    font-weight: 600;
    color: var(--dark-text);
}

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

.back-to-archive {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Animal Details Section */
.animal-details-section {
    background: white;
    padding: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.animal-details-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.animal-details-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.animal-details-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    object-fit: cover;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
}

.detail-label {
    font-size: var(--font-size-a);
    color: var(--primary-orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-value {
    font-size: var(--font-size-p);
    color: var(--dark-text);
    font-weight: 500;
}

/* Adoption Form Link */
.adoption-form-link {
    text-align: center;
    padding-top: 1rem;
}

.btn-adoption-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    font-size: var(--font-size-h4);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-adoption-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
}

/* Animal Gallery Section */
.animal-gallery-section {
    background: var(--soft-cream);
    padding: 4rem 2rem;
}

.gallery-title {
    text-align: center;
    font-size: var(--font-size-h2);
    color: var(--primary-orange);
    margin-bottom: 3rem;
}

.animal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    aspect-ratio: 1;
    background: white;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Adoption CTA */
.adoption-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    padding: 3rem 2rem;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: var(--font-size-h2) !important;
    margin-bottom: 1rem !important;
    color: white !important;
}

.cta-box p {
    font-size: var(--font-size-p) !important;
    margin-bottom: 2rem !important;
    opacity: 0.95;
}

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

/* ==========================================================================
   News Archive Page
   ========================================================================== */

.page-header {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    text-align: center;
    color: white;
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    margin-bottom: 1rem;
    color: white;
}

.page-description {
    font-size: var(--font-size-h4);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.news-archive-section {
    padding: 4rem 2rem;
    background: var(--soft-cream);
}

.news-filter {
    margin-bottom: 3rem;
    text-align: center;
}

.filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.filter-btn:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

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

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

.pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

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

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

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

.no-posts p {
    color: #666;
    margin-bottom: 2rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: var(--font-size-h4);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Wycentruj przyciski w sekcji CTA */
.cta-section .hero-buttons {
    justify-content: center !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #4a4a4a, #2d2d2d);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: var(--font-size-h3);
    margin-bottom: 1.5rem;
    color: var(--light-orange);
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Footer Tax Logo */
.footer-tax-logo {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.footer-tax-logo a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-tax-logo a:hover {
    transform: scale(1.05);
}

.footer-tax-logo .tax-logo {
    width: 120px;
    height: auto;
    display: block;
}

/* Footer Contact */
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--light-orange);
}

.footer-contact i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

/* Footer Sitemap Section - zajmuje 2 kolumny */
.footer-sitemap-section {
    grid-column: span 2;
}

/* Footer Sitemap */
.footer-sitemap {
    list-style: none;
    padding: 0;
    column-count: 3;
    column-gap: 2rem;
}

.footer-sitemap > li {
    margin-bottom: 0;
    break-inside: avoid;
    page-break-inside: avoid;
}

.footer-sitemap a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.4rem 0;
}

.footer-sitemap a:hover {
    color: var(--light-orange);
    /*padding-left: 0.5rem;*/
}

/* Footer sitemap submenu */
.footer-sitemap .sub-menu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
}

.footer-sitemap .sub-menu li {
    margin-bottom: 0;
}

.footer-sitemap .sub-menu a {
    font-size: 0.9em;
    opacity: 0.8;
    padding: 0.3rem 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

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

/* ==========================================================================
   Responsywność
   ========================================================================== */

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: var(--font-size-h2);
    }

    .mission-container {
        grid-template-columns: 1fr;
    }

    .mission-image {
        height: 300px;
        font-size: 5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: var(--font-size-h2);
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header-tax-logo {
        display: none;
    }

    .main-navigation {
        margin-right: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-sitemap-section {
        grid-column: span 1;
    }

    .footer-sitemap {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
        margin-top: -25px;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: var(--font-size-h3);
        margin-bottom: 0.25rem;
    }

    .help-grid,
    .animals-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: var(--font-size-h2);
    }

    .filter-buttons {
        flex-direction: column;
    }

    .animal-details-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .animal-details-image {
        flex: none;
        max-width: 100%;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .animal-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stats-section {
        padding: 1.5rem 1rem;
        margin-top: -20px;
    }

    .stat-item {
        padding: 0.85rem;
    }

    .stat-number {
        font-size: var(--font-size-h4);
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .hero-title {
        font-size: var(--font-size-h2);
    }

    .hero-subtitle {
        font-size: var(--font-size-p);
    }

    .section-title {
        font-size: var(--font-size-h3);
    }

    .page-title {
        font-size: var(--font-size-h2);
    }

    .page-description {
        font-size: var(--font-size-p);
    }

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

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

    .post-header {
        padding: 2rem 1.5rem;
    }

    .post-content {
        padding: 2rem 1.5rem;
    }

    .post-footer {
        padding: 2rem 1.5rem;
    }

    .page-header-simple {
        padding: 2rem 1.5rem;
    }

    .page-content {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   Page Template Styles
   =================================== */

.single-page {
    background: var(--soft-cream);
}

.page-header-simple {
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    text-align: center;
    color: white;
}

.page-header-simple .page-title {
    font-family: var(--font-heading) !important;
    font-size: var(--font-size-h1) !important;
    color: white !important;
    margin-bottom: 0 !important;
    line-height: 1.3;
}

.page-featured-image {
    background: white;
    padding: 2rem;
}

.page-featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.page-content {
    background: white;
    padding: 3rem 2rem;
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--font-size-p);
    line-height: 1.8;
    color: var(--dark-text);
}

.page-content-inner h2 {
    font-size: var(--font-size-h2) !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.page-content-inner h3 {
    font-size: var(--font-size-h3) !important;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.page-content-inner h4 {
    font-size: var(--font-size-h4) !important;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.page-content-inner p {
    margin-bottom: 1.25rem;
}

.page-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    margin: 1.5rem 0;
}

.page-content-inner ul,
.page-content-inner ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.page-content-inner li {
    margin-bottom: 0.5rem;
}

.page-content-inner a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.page-content-inner a:hover {
    color: var(--dark-text);
}

/* ==========================================================================
   Swiper Sliders
   ========================================================================== */

/* Hero Swiper Section */
.hero-swiper-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 600px;
}

.hero-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .slide-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
    text-decoration: none;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-swiper .hero-content {
    position: relative;
    z-index: 2;
    text-align: left !important;
    color: var(--dark-orange) !important;
    width: 1400px !important;
    margin: 0 auto !important;
    padding: 2rem 2rem 2rem 2rem;
}

.hero-swiper .hero-content * {
    text-align: left !important;
}

.hero-swiper .hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    color: var(--dark-orange);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-swiper .hero-subtitle {
    font-size: var(--font-size-h4);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-swiper .hero-buttons {
    display: flex !important;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start !important;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Partners Swiper Section */
.partners-swiper {
    width: 100%;
    padding: 2rem 0;
}

.partners-swiper .swiper-wrapper {
    align-items: center;
    justify-content: center;
}

.partners-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero-swiper {
        height: 500px;
    }

    .hero-swiper .hero-title {
        font-size: var(--font-size-h2);
    }

    .hero-swiper .hero-subtitle {
        font-size: var(--font-size-p);
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-swiper {
        height: 400px;
    }

    .hero-swiper .hero-title {
        font-size: var(--font-size-h3);
    }

    .hero-swiper .hero-subtitle {
        font-size: 14px;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page {
    background: var(--soft-cream);
}

/* Contact Content Section */
.contact-content-section {
    padding: 4rem 2rem;
    background: var(--soft-cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: var(--font-size-h3);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-card strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* Highlighted Contact Card */
.contact-card-highlight {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    color: white;
}

.contact-card-highlight h3,
.contact-card-highlight p {
    color: white;
}

.contact-card-highlight .contact-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card-highlight .btn {
    background: white;
    color: var(--primary-orange);
    margin-top: 1rem;
}

.contact-card-highlight .btn:hover {
    background: var(--soft-cream);
    transform: scale(1.05);
}

/* Contact People Column */
.contact-people-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-subtitle {
    font-size: var(--font-size-h2);
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-person {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-person:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-hover);
}

.contact-person h4 {
    font-size: var(--font-size-h4);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-person .person-name {
    font-size: var(--font-size-p);
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.contact-person .person-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: var(--font-size-a);
}

.contact-person .person-detail:last-child {
    margin-bottom: 0;
}

.contact-person .person-detail i {
    color: var(--primary-orange);
    width: 20px;
}

.contact-person .person-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-person .person-detail a:hover {
    color: var(--primary-orange);
}

/* Google Map Section */
.contact-map-section {
    width: 100%;
    height: 450px;
    background: var(--light-gray);
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Management Section */
.contact-management-section {
    padding: 4rem 2rem;
    background: white;
}

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

.management-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.management-card h2 {
    font-size: var(--font-size-h3);
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.management-card h2 i {
    font-size: 1.2rem;
}

.management-person {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.management-person:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.management-person:first-of-type {
    padding-top: 0;
}

.mgmt-name {
    font-size: var(--font-size-p);
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.mgmt-position {
    font-size: var(--font-size-a);
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.mgmt-detail {
    font-size: var(--font-size-a);
    color: #666;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mgmt-detail:last-child {
    margin-bottom: 0;
}

.mgmt-detail i {
    color: var(--primary-orange);
    width: 16px;
}

/* Volunteers Note */
.volunteers-note {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.volunteers-note p {
    color: white;
    font-size: var(--font-size-p);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.volunteers-note i {
    font-size: 1.2rem;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-map-section {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .contact-content-section {
        padding: 2rem 1rem;
    }

    .contact-management-section {
        padding: 2rem 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .management-card {
        padding: 1.5rem;
    }

    .contact-map-section {
        height: 300px;
    }

    .volunteers-note {
        padding: 1.5rem;
    }

    .volunteers-note p {
        flex-direction: column;
        gap: 0.75rem;
    }
}
