/* =============================================
   PURRFECT BREEDS - CUSTOM STYLES
   Premium Cat Breeds Website
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: #2D3436;
    --color-secondary: #FFEAA7;
    --color-accent: #E17055;
    --color-accent-dark: #D35400;
    --color-accent-light: #FDCB6E;
    --color-bg: #FAF9F6;
    --color-bg-alt: #F5F3EF;
    --color-card: #FFFFFF;
    --color-text: #2D3436;
    --color-text-muted: #636E72;
    --color-border: #E9E5DE;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 60px rgba(225, 112, 85, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ===== NAVIGATION ===== */
.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
    background: rgba(225, 112, 85, 0.08);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-secondary) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-buttons .btn-primary {
    background: #fff;
    color: var(--color-accent);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
}

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

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 26px;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(180deg);
    }
}

.hero-image {
    position: relative;
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.carousel {
    position: relative;
}

.carousel-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-slide {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--color-primary), #4a5568);
    display: flex;
    align-items: center;
}

.featured-slide-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 50%;
}

.featured-slide-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.featured-breed-name {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
}

.featured-breed-tagline {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.featured-breed-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-traits {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trait-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-card);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: var(--transition);
}

.carousel-control-icon:hover {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    margin: 0 6px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ===== BREEDS SECTION ===== */
.breeds-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

/* ===== BREED CARD ===== */
.breed-card {
    background: var(--color-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.breed-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.breed-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.breed-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0;
    transition: var(--transition);
}

.breed-card:hover .breed-card-overlay {
    opacity: 1;
}

.breed-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.breed-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.breed-card-origin {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breed-card-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.breed-card-traits {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.breed-trait {
    background: var(--color-bg-alt);
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.breed-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.breed-card-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.accordion-item {
    background: var(--color-card);
    border: none;
    border-radius: var(--radius-md) !important;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
    padding: 20px 24px;
    background: var(--color-card);
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--color-card);
    color: var(--color-accent);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E17055'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 40px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand i {
    color: var(--color-accent);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

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

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

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-newsletter-text {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-form .input-group {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.footer-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 16px;
}

.footer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    border-color: var(--color-accent);
}

.footer-form .btn-primary {
    background: var(--color-accent);
    border: none;
    padding: 12px 20px;
}

.footer-form .btn-primary:hover {
    background: var(--color-accent-dark);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 24px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

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

    .featured-slide-content {
        max-width: 100%;
        padding: 40px;
        text-align: center;
    }

    .featured-slide-image {
        opacity: 0.3;
        width: 100%;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .featured-traits {
        justify-content: center;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .featured-slide {
        min-height: 400px;
    }

    .featured-breed-name {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .breed-card-image {
        height: 180px;
    }

    .carousel-indicators {
        bottom: -40px;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .breed-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .breed-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .breed-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .breed-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .breed-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .breed-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .breed-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .breed-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .breed-card:nth-child(8) {
        animation-delay: 0.8s;
    }

    .breed-card:nth-child(9) {
        animation-delay: 0.9s;
    }

    .breed-card:nth-child(10) {
        animation-delay: 1.0s;
    }

    .breed-card:nth-child(11) {
        animation-delay: 1.1s;
    }

    .breed-card:nth-child(12) {
        animation-delay: 1.2s;
    }
}

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

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

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a5568 100%);
    padding: 140px 0 60px;
    color: #fff;
}

.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 16px;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a:hover {
    color: var(--color-secondary);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    padding: 40px 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.filter-bar {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-search {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.filter-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.filter-search .form-control {
    padding: 14px 16px 14px 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-card);
    font-size: 1rem;
}

.filter-search .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(225, 112, 85, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.why-card {
    background: var(--color-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.why-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: #fff;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.about-image-wrapper {
    position: relative;
}

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

.about-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.value-card {
    background: var(--color-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FAQ CATEGORIES ===== */
.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.faq-category-title i {
    color: var(--color-accent);
}

/* ===== ACCENT BUTTON ===== */
.btn-accent {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== NAV ACTIVE STATE ===== */
.nav-link.active {
    color: var(--color-accent);
    background: rgba(225, 112, 85, 0.08);
}

/* ===== RESPONSIVE FOR NEW COMPONENTS ===== */
@media (max-width: 991px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search {
        min-width: 100%;
    }

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

    .about-image-decoration {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 120px 0 40px;
    }

    .about-stats {
        gap: 24px;
        justify-content: center;
    }
}