/* ========================================
   SGustmunic - Animal Care Services
   Modern, Professional, Clean Design
   Color Scheme: Blue, Purple, Green, Orange
   NO PINK COLORS
======================================== */

/* === CSS VARIABLES === */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #7b68ee;
    --accent-color: #50c878;
    --warning-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

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

ul {
    list-style: none;
}

/* === HEADER & NAVIGATION === */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.1);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    overflow: hidden;
}

.hero-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: #6a57d4;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* === SECTIONS === */
section {
    padding: 80px 0;
}

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

.section-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
}

/* === ABOUT PREVIEW === */
.about-preview {
    background: var(--light-color);
}

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

.about-text i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.stat {
    text-align: center;
}

.stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-color);
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-visual svg {
    width: 100%;
    height: auto;
}

/* === TEAM === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

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

.member-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === REVIEWS === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.reviewer i {
    font-size: 3rem;
    color: var(--primary-color);
}

.reviewer-name {
    font-weight: bold;
    color: var(--dark-color);
}

.reviewer-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: var(--text-light);
}

/* === CONTACT CTA === */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quick-contact input,
.quick-contact select,
.quick-contact textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
}

.quick-contact textarea {
    resize: vertical;
    grid-column: 1 / -1;
}

.quick-contact button {
    width: 100%;
    margin-top: 1rem;
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

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

.blog-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

/* === FOOTER === */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: start;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--warning-color);
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cookie-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === COOKIE MODAL === */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 2rem;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-left: 2rem;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

/* === PAGE HERO === */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
}

/* === SERVICES DETAIL === */
.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.service-detail-icon {
    font-size: 5rem;
    color: var(--primary-color);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.feature h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.feature p {
    color: var(--text-light);
}

.additional-services {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.additional-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.additional-item h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.additional-item p {
    color: var(--text-light);
}

/* === PRICING === */
.pricing-info {
    background: var(--light-color);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pricing-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.pricing-features i {
    color: var(--accent-color);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-box i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* === ABOUT PAGE === */
.about-story {
    background: var(--light-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.mission-values {
    padding: 80px 0;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-light);
}

/* === TEAM DETAILED === */
.team-detailed {
    background: var(--light-color);
}

.member-detailed {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.member-avatar {
    font-size: 5rem;
    color: var(--secondary-color);
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

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

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.member-skills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.member-skills span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.member-skills i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* === WHY CHOOSE === */
.why-choose {
    padding: 80px 0;
}

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

.reason {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reason-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.reason h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.reason p {
    color: var(--text-light);
}

/* === CERTIFICATIONS === */
.certifications {
    background: var(--light-color);
}

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

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cert-item i {
    font-size: 3rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cert-item p {
    color: var(--text-light);
}

/* === CONTACT PAGE === */
.contact-page {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-box h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.detail-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.detail-text h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.detail-text p {
    color: var(--text-color);
}

.detail-text a {
    color: var(--primary-color);
}

.detail-text a:hover {
    text-decoration: underline;
}

.detail-text small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.emergency-notice {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--warning-color);
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.emergency-notice i {
    font-size: 2rem;
    color: var(--warning-color);
}

.emergency-notice h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.emergency-notice p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 5px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.social-links-large i {
    font-size: 1.5rem;
}

/* === CONTACT FORM === */
.contact-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-box h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-label span {
    color: var(--text-color);
    font-size: 0.95rem;
}

.checkbox-label a {
    color: var(--primary-color);
}

/* === MAP SECTION === */
.map-section {
    background: var(--light-color);
}

.map-placeholder {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-placeholder svg {
    width: 100%;
    display: block;
}

.map-overlay {
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    text-align: center;
}

.map-overlay p {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.directions h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

.direction-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.direction-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.direction-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.direction-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === BLOG PAGE === */
.blog-page .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-article-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

.article-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.search-form button {
    padding: 0.7rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.categories-list li {
    margin-bottom: 0.8rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.categories-list a:hover {
    background: var(--light-color);
    padding-left: 1rem;
}

.categories-list span {
    background: var(--light-color);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.popular-posts li {
    margin-bottom: 1rem;
}

.popular-posts a {
    display: flex;
    gap: 0.8rem;
    color: var(--text-color);
    transition: var(--transition);
}

.popular-posts a:hover {
    color: var(--primary-color);
}

.popular-posts i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-widget i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

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

.cta-widget .btn:hover {
    background: var(--light-color);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 0.8rem;
    background: var(--light-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: var(--transition);
}

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

/* === ARTICLE PAGE === */
.article-page {
    background: var(--light-color);
    padding: 60px 0;
}

.article-header {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.article-meta-header {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.article-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.article-icon-feature svg {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    display: block;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.article-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 1.5rem 0 1rem;
}

.article-section h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 1rem 0 0.5rem;
}

.article-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-section ul,
.article-section ol {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

.article-section ol {
    list-style: decimal;
}

.article-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.list-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
}

.list-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.list-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.list-item p {
    color: var(--text-light);
}

.highlight-box {
    background: #f0f8ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 5px;
}

.highlight-box h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    margin-left: 0;
}

.highlight-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.highlight-box i {
    color: var(--primary-color);
    margin-top: 0.3rem;
}

.warning-signs {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.sign {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--warning-color);
    display: flex;
    gap: 1rem;
}

.sign i {
    font-size: 1.5rem;
    color: var(--warning-color);
}

.sign p {
    margin: 0;
    color: var(--text-color);
}

.article-author {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.author-icon {
    font-size: 4rem;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

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

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.share-btn {
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    transform: scale(1.05);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.related-posts li {
    margin-bottom: 1rem;
}

.related-posts a {
    display: flex;
    gap: 0.8rem;
    color: var(--text-color);
    transition: var(--transition);
}

.related-posts a:hover {
    color: var(--primary-color);
}

.related-posts i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 1rem;
}

.nav-back,
.nav-next {
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-back:hover,
.nav-next:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* === THANK YOU PAGE === */
.thank-you-page {
    padding: 80px 0;
    background: var(--light-color);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.thank-you-icon svg {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.thank-you-content h1 i {
    color: var(--accent-color);
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thank-you-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    gap: 1rem;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.info-box h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.info-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.social-follow {
    margin-top: 2rem;
}

.social-follow p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* === LEGAL CONTENT === */
.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.legal-text h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 1.5rem 0 1rem;
}

.legal-text h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 1rem 0 0.5rem;
}

.legal-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

.legal-text ol {
    list-style: decimal;
}

.legal-text li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text code {
    background: var(--light-color);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: monospace;
    font-size: 0.9em;
}

.legal-text a {
    color: var(--primary-color);
}

.legal-text a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .story-content,
    .pricing-content,
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper,
    .article-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-page .container {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
    
    .blog-article-card {
        grid-template-columns: 1fr;
    }
    
    .article-icon-large {
        text-align: center;
    }
    
    .member-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons,
    .cta-buttons,
    .thank-you-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}

/* === MODERN ARTICLE STYLING === */
.modern-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.article-back-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.modern-article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--light-color);
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.modern-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin: 0 0 1.5rem 0;
    font-weight: 800;
}

.modern-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.article-meta-modern {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.article-meta-modern .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-meta-modern .meta-item i {
    color: var(--accent-color);
}

.modern-article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.modern-article-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.modern-article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-color), var(--secondary-color));
    border-radius: 3px;
}

.modern-article-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.modern-article-content p {
    margin-bottom: 1.5rem;
}

/* Drop Cap */
.drop-cap-paragraph p {
    margin-bottom: 1.5rem;
}

.drop-cap {
    float: left;
    font-size: 4.5rem;
    line-height: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, #f8f9ff, #fff5f8);
    border-left: 5px solid var(--accent-color);
    padding: 2rem 2rem 2rem 3rem;
    margin: 3rem 0;
    border-radius: 10px;
    position: relative;
}

.quote-block i {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.quote-block p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark-color);
    margin: 0;
    font-weight: 500;
}

/* Styled Grid */
.styled-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.grid-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.card-icon.blue {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: var(--white);
}

.card-icon.green {
    background: linear-gradient(135deg, #50c878, #3da35d);
    color: var(--white);
}

.card-icon.orange {
    background: linear-gradient(135deg, #f39c12, #d68910);
    color: var(--white);
}

.card-icon.purple {
    background: linear-gradient(135deg, #7b68ee, #5f4dbf);
    color: var(--white);
}

.grid-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.grid-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Nutrition Section */
.nutrition-section {
    margin: 2.5rem 0;
}

.nutrition-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.nutrition-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.nutrition-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0 0 0.5rem 0;
}

.nutrition-content p {
    color: var(--text-light);
    margin: 0;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fff8f0, #fffcf7);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.highlight-header i {
    font-size: 2rem;
}

.highlight-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
}

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

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Warning Grid */
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.warning-card {
    background: #fff9f0;
    border: 2px solid #f39c12;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.warning-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
}

.warning-card i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.warning-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.warning-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Breed Section */
.breed-section {
    margin: 2.5rem 0;
}

.breed-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.breed-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breed-card h4 i {
    color: var(--accent-color);
}

.breed-card p {
    margin: 0;
    color: var(--text-light);
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #f0f8ff, #fff5f8);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid var(--primary-color);
}

.conclusion-section h2 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Author Section */
.author-section {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 4rem 0 3rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author-avatar {
    min-width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.author-details h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
}

.author-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem !important;
}

.author-details p {
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-content h3 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.cta-content .btn:hover {
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Article Navigation Modern */
.article-navigation-modern {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 4rem 0 2rem 0;
    padding-top: 3rem;
    border-top: 2px solid var(--light-color);
}

.article-navigation-modern .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.article-navigation-modern .nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.article-navigation-modern .nav-link.next {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-title {
        font-size: 2rem;
    }
    
    .modern-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-article-content {
        font-size: 1rem;
    }
    
    .modern-article-content h2 {
        font-size: 1.6rem;
    }
    
    .drop-cap {
        font-size: 3.5rem;
        line-height: 3rem;
    }
    
    .quote-block p {
        font-size: 1.1rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .article-navigation-modern {
        flex-direction: column;
    }
    
    .article-navigation-modern .nav-link.next {
        margin-left: 0;
    }
    
    .styled-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
}
