/**
 * FlowerService Theme - Main Stylesheet
 * Based on koltuklandik.com design analysis
 * 
 * @package FlowerService
 * @version 1.0.0
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Primary Colors */
    --primary-blue: #29468E;
    --primary-blue-dark: #1a3a7a;
    --accent-green: #1A7B06;
    --accent-green-dark: #158005;
    --white: #FFFFFF;
    
    /* Background Colors */
    --bg-light: #F8F8F8;
    --bg-light-blue: #E6EEFC;
    --bg-very-light-blue: #F5F9FF;
    --footer-dark: #0E2431;
    
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-body: #555555;
    --text-heading: #212529;
    --text-light: #888888;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-secondary: 'Ubuntu', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 60px;
    --card-padding: 25px;
    
    /* Border Radius */
    --radius-pill: 100px;
    --radius-button: 6px;
    --radius-card: 10px;
    
    /* Shadows */
    --shadow-card: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 25px rgba(0,0,0,0.12);
    --shadow-soft: 0 1px 3px rgba(0,0,0,0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-blue-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.1rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: var(--section-padding) 0;
}

.content-area {
    min-width: 0;
}

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

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    opacity: 0.9;
}

.top-bar-links a {
    color: var(--white);
    margin-left: 20px;
    font-weight: 500;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .top-bar-text {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
}

/* ========================================
   Header
   ======================================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-card);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-branding {
    flex-shrink: 0;
}

.site-title-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.site-title-link:hover {
    color: var(--primary-blue-dark);
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 10px 18px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-button);
    transition: var(--transition);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
    color: var(--primary-blue);
    background: var(--bg-light-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .primary-menu a {
        padding: 15px;
        border-bottom: 1px solid var(--bg-light);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-very-light-blue) 0%, var(--white) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: var(--accent-green);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.hero-illustration svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration svg {
        max-width: 300px;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-outline-card {
    padding: 8px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-button);
    background: transparent;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
}

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

/* ========================================
   CTA Sections
   ======================================== */
.cta-section-green {
    background: var(--accent-green);
    padding: 25px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-inner span {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
}

.cta-banner {
    background: var(--accent-green);
    padding: 60px 0;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Companies Section
   ======================================== */
.companies-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.section-header h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

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

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.company-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.company-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.company-icon svg {
    width: 35px;
    height: 35px;
}

.company-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.company-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Articles Section
   ======================================== */
.latest-articles-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.article-thumb {
    height: 180px;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.article-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-title a {
    color: var(--text-heading);
}

.article-title a:hover {
    color: var(--primary-blue);
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.read-more:hover {
    color: var(--accent-green);
}

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

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Info Section
   ======================================== */
.info-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light-blue);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Posts Grid
   ======================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.card-thumbnail {
    height: 200px;
    overflow: hidden;
}

.card-thumbnail img,
.card-thumbnail svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card-thumbnail.placeholder {
    background: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    padding: 20px;
}

.card-categories {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-light-blue);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
}

.card-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-title a {
    color: var(--text-heading);
}

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

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Single Post
   ======================================== */
.single-article {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.entry-header {
    padding: 30px 30px 0;
}

.entry-categories {
    margin-bottom: 15px;
}

.entry-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meta-item svg {
    color: var(--primary-blue);
}

.entry-thumbnail {
    margin: 20px 30px;
    border-radius: var(--radius-card);
    overflow: hidden;
}

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

.entry-content {
    padding: 0 30px 30px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: var(--bg-light-blue);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--bg-light);
    background: var(--bg-light);
}

.entry-tags {
    margin-bottom: 15px;
}

.tag-link {
    display: inline-block;
    margin-right: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tag-link:hover {
    color: var(--primary-blue);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-buttons strong {
    color: var(--text-heading);
    font-size: 0.9rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #000000; }
.share-btn.whatsapp { background: #25D366; }

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: var(--white);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light-blue);
    border-radius: var(--radius-card);
    margin-top: 30px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-name {
    margin-bottom: 5px;
    color: var(--text-heading);
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
}

/* Related Posts */
.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.related-thumb {
    height: 140px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.related-card h4 a {
    color: var(--text-heading);
}

.related-card h4 a:hover {
    color: var(--primary-blue);
}

.related-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .entry-header,
    .entry-content,
    .entry-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .entry-title {
        font-size: 1.6rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-title {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 20px;
    font-size: 1rem;
    margin-bottom: 0;
}

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

.widget li {
    border-bottom: 1px solid var(--bg-light);
}

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

.widget li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-body);
    transition: var(--transition);
}

.widget li a:hover {
    background: var(--bg-light-blue);
    color: var(--primary-blue);
}

/* Recent Posts Widget */
.recent-posts-list {
    padding: 0;
}

.recent-post-item a {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-thumb.placeholder {
    background: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.recent-post-thumb.placeholder svg {
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-heading);
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-list li a {
    display: flex;
    justify-content: space-between;
}

/* Companies Widget */
.companies-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ad Areas */
.ad-area {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-card);
    margin-bottom: 30px;
}

.sidebar-ad {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-ad-wrapper {
    background: var(--bg-light);
    padding: 15px 0;
}

.header-ad {
    min-height: 90px;
}

.content-ad {
    margin: 30px 0;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    padding: 20px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-body);
}

.breadcrumb a:hover {
    color: var(--primary-blue);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--primary-blue);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--footer-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

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

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

.social-links svg {
    width: 20px;
    height: 20px;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

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

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page .page-title {
    color: var(--primary-blue);
}

.contact-page .page-description {
    font-size: 1.1rem;
    color: var(--text-body);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light-blue);
    border-radius: var(--radius-card);
}

.contact-info .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info .info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
    color: var(--text-body);
}

.contact-form-wrapper h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-heading);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(41, 70, 142, 0.1);
}

.form-note {
    margin-top: 15px;
    color: var(--text-light);
}

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

/* ========================================
   Archive Page
   ======================================== */
.archive-header {
    margin-bottom: 30px;
}

.archive-title {
    color: var(--primary-blue);
    font-size: 2rem;
}

.archive-description {
    color: var(--text-body);
    margin-top: 10px;
}

/* ========================================
   Pagination
   ======================================== */
.pagination-wrapper {
    margin-top: 40px;
}

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

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    color: var(--text-body);
    border: 1px solid #ddd;
    border-radius: var(--radius-button);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* ========================================
   Comments
   ======================================== */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.comments-title {
    color: var(--primary-blue);
    margin-bottom: 25px;
}

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

.comment {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--bg-light);
}

.comment:last-child {
    border-bottom: none;
}

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

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

.comment-meta {
    margin-bottom: 10px;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--text-heading);
}

.comment-metadata {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-button);
    margin-bottom: 15px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ========================================
   Search Form
   ======================================== */
.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    transition: var(--transition);
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-submit {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--primary-blue-dark);
}

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

.error-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-illustration {
    margin-bottom: 30px;
}

.error-content h1 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.error-search h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-body);
}

/* ========================================
   No Content
   ======================================== */
.no-content {
    text-align: center;
    padding: 60px 20px;
}

.no-content-inner {
    max-width: 400px;
    margin: 0 auto;
}

.no-content svg {
    margin-bottom: 20px;
}

.no-content h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.no-content p {
    margin-bottom: 25px;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
    opacity: 0;
}

/* Staggered animations */
.fade-in-up:nth-child(1) { animation-delay: 0s; }
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }
.fade-in-up:nth-child(6) { animation-delay: 0.5s; }

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

:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .sidebar,
    .site-footer,
    .whatsapp-float,
    .share-buttons,
    .related-posts,
    .comments-area {
        display: none !important;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .entry-content {
        font-size: 12pt;
    }
}
