:root {
    /* Primary Brand Colors - Island Cooling Theme */
    --primary-blue: #6f9cc9;
    --primary-light-blue: #8fb0d6;
    --primary-dark-blue: #5a7fa8;
    --secondary-green: #98ba4d;
    --secondary-light-green: #adc96b;
    --secondary-dark-green: #7a963e;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F9FC;
    --gray: #E0E7EF;
    --text-dark: #1A2332;
    --text-gray: #5A6C7D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6f9cc9 0%, #8fb0d6 100%);
    --gradient-secondary: linear-gradient(135deg, #98ba4d 0%, #adc96b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(111, 156, 201, 0.95) 0%, rgba(143, 176, 214, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(111, 156, 201, 0.1);
    --shadow-md: 0 4px 12px rgba(111, 156, 201, 0.15);
    --shadow-lg: 0 8px 24px rgba(111, 156, 201, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* UIkit Customization */
.uk-button-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.uk-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.uk-button-secondary {
    background: var(--gradient-secondary) !important;
    border: none !important;
    color: var(--white) !important;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.uk-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.uk-button-default {
    border: 2px solid var(--primary-blue) !important;
    color: var(--primary-blue) !important;
    background: transparent;
    transition: all 0.3s ease;
}

.uk-button-default:hover {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
}

/* Global Heading Styles - slightly smaller */
.uk-heading-small {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    line-height: 1.3;
}

.uk-heading-medium {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.brand-blue {
    color: var(--primary-blue);
}

.brand-green {
    color: var(--secondary-green);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background-image: url('../png/House-Hawaii-v2-scaled-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(111, 156, 201, 0.75) 50%, rgba(143, 176, 214, 0.70) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.hero-section > * {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-badge {
    background: rgba(152, 186, 77, 0.95);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature:hover {
    transform: translateY(-2px);
    background: rgba(26, 35, 50, 0.85);
    border-color: var(--secondary-light-green);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats Cards in Hero */
.stat-card {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-light-green);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-light-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4;
}

/* Video Container Styles */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-overlay {
    position: relative;
    cursor: pointer;
}

.video-overlay img,
.video-container video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.play-button,
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(152, 186, 77, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover,
.play-button-overlay:hover {
    background: rgba(152, 186, 77, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Rebate Image */
.rebate-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.rebate-image:hover {
    transform: scale(1.02);
}

/* Credibility Section */
.credibility-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.credibility-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.credibility-card:hover {
    transform: translateY(-5px);
}

.credibility-icon {
    max-height: 120px;
    width: auto;
    margin: 0 auto;
}

.credibility-card h3 {
    font-size: 1.1rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.7;
}
.navbar-cont {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

/* Step Cards */
.step-card {
    background: transparent;
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 75%;
}

.step-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    background: var(--light-gray);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* 6 Reasons Section */
.six-reasons-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.six-reasons-section h2 {
    margin-bottom: 2rem;
}

.six-reasons-section .uk-text-large {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,128C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.benefits-section .benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    height: 75%;
}

.benefits-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefits-section .benefit-icon {
    margin-bottom: 1.5rem;
}

.benefits-section .benefit-icon img {
    max-height: 60px;
    width: auto;
}

.benefits-section .benefit-title {
    color: var(--secondary-green);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-section .benefit-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,128C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
    background-size: cover;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Section Backgrounds */
.section-light {
    background: var(--light-gray);
}

.section-white {
    background: var(--white);
}

/* Section Spacing Improvements */
.section-light,
.section-white {
    padding-bottom: 4rem;
}

.uk-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Feature Cards Spacing */
#features .uk-grid-large {
    margin-bottom: 3rem;
}

/* How It Works Spacing */
#how-it-works {
    padding-bottom: 4rem;
}

/* Footer */
.uk-section-secondary {
    background: var(--text-dark) !important;
}

.footer-title {
    color: var(--primary-light-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light-blue);
}
.footer-attribution {
    padding: 1rem 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    margin-top: 1rem;
}

/* Logo */
.logo-text {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Utility Classes */
.text-blue {
    color: var(--primary-blue) !important;
}

.text-green {
    color: var(--secondary-green) !important;
}

.uk-section-primary {
    background: var(--gradient-hero) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Improvements */
@media (max-width: 960px) {
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
        background-position: 65% center;
    }
    
    .hero-section::before {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.90) 0%, rgba(111, 156, 201, 0.80) 100%);
    }
    
    .hero-features {
        gap: 0.5rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 0.65rem 1rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .credibility-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .six-reasons-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .uk-heading-small {
        font-size: 1.75rem;
    }
}
.hero-title {
    color: var(--white);
}
@media (max-width: 640px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0 2.5rem;
        background-position: 70% center;
    }
    
    .hero-section::before {
        background: linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(111, 156, 201, 0.85) 100%);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .uk-button-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .uk-heading-small {
        font-size: 1.5rem;
    }
    
    .credibility-icon {
        max-height: 80px;
    }
    
    .play-button,
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .uk-heading-small {
        font-size: 1.35rem;
    }
}

/* Get Started Page Styles */
.get-started-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #1a2332 0%, var(--primary-blue) 50%, var(--primary-light-blue) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.get-started-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.get-started-hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--secondary-light-green);
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(111, 156, 201, 0.15);
    padding: 3rem;
    border: 1px solid var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.form-input {
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    height: auto !important;
}

.form-input:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(111, 156, 201, 0.1);
    background: var(--light-gray);
}

.uk-form-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
    .form-card {
        padding: 1.5rem;
    }
}

/* =========================================
   Blog Styles
   ========================================= */

.blog-hero-section {
    min-height: 40vh;
    background: linear-gradient(135deg, #1a2332 0%, var(--primary-blue) 50%, var(--primary-light-blue) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.blog-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 2;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}

/* Blog Intro */
.blog-intro-section p {
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}
.intro-section {
    color: var(--secondary-light-green);
    text-align: center;
}
/* Blog Post Cards */
.blog-post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.post-thumbnail {
    position: relative;
    padding-top: 60%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: var(--primary-blue);
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.post-excerpt {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.read-more-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.read-more-link:hover {
    color: var(--primary-dark-blue);
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Pagination */
.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid var(--gray);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.blog-pagination .next,
.blog-pagination .prev {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Single Post Styles */
.single-post-container {
    background: white;
    padding: 3rem; 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); 
    border: 1px solid var(--gray);
}

@media (max-width: 640px) {
    .single-post-container {
        padding: 1.5rem;
    }
}

.single-post-article .post-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.single-post-article .post-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.single-post-article .post-meta {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 2rem;
}

.single-post-article .post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-post-article .post-content h2 {
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.single-post-article .post-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    font-weight: 600;
}

.single-post-article .post-content p {
    margin-bottom: 1.5rem;
}

.single-post-article .post-content ul, 
.single-post-article .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post-article .post-content li {
    margin-bottom: 0.5rem;
}

.post-tags {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
}

.post-navigation a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.post-navigation a:hover {
    color: var(--primary-blue);
}

/* Premium Features Section */
.premium-features-section {
    background: linear-gradient(to bottom, #ffffff, #f5f9fc);
}

.premium-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.premium-feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(111, 156, 201, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.premium-feature-card:hover .premium-feature-icon {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.premium-feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.premium-feature-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.05rem;
}
