/**
 * Island Cooling - Unified Responsive Stylesheet
 * Integrates existing brand styles with comprehensive responsive design
 */

/* ==========================================
   CSS VARIABLES & BRAND COLORS
   ========================================== */

: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;
}

/* ==========================================
   BASE RESET & MOBILE-FIRST FOUNDATION
   ========================================== */

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   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;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.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;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.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 TYPOGRAPHY - MOBILE FIRST
   ========================================== */

.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);
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-green {
    color: var(--secondary-green) !important;
}

/* ==========================================
   HERO SECTION - RESPONSIVE
   ========================================== */

.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;
    padding: 3rem 0;
}

.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: 2rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
}

.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;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.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;
}

/* ==========================================
   STAT CARDS - RESPONSIVE
   ========================================== */

.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;
    text-align: 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(2rem, 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);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================
   STEP CARDS - RESPONSIVE
   ========================================== */

.step-card {
    background: white;
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.step-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    background: var(--light-gray);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   PREMIUM FEATURES - RESPONSIVE
   ========================================== */

.premium-features-section {
    background: linear-gradient(to bottom, #ffffff, #f5f9fc);
    padding: 3rem 0;
}

.premium-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 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;
    height: 100%;
    margin-bottom: 1.5rem;
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.premium-feature-icon {
    width: 80px;
    height: 80px;
    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: clamp(1.1rem, 2vw, 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: clamp(0.9rem, 1.5vw, 1.05rem);
}

/* ==========================================
   VIDEO CONTAINERS - RESPONSIVE
   ========================================== */

.video-container,
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    margin-bottom: 2rem;
}

.video-container-wrapper * {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.video-overlay {
    position: relative;
    cursor: pointer;
}

.video-overlay img,
.video-container video,
.video-wrapper img,
.video-wrapper 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: 60px;
    height: 60px;
    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);
}

/* ==========================================
   CREDIBILITY SECTION - RESPONSIVE
   ========================================== */

.rebate-credibility-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.credibility-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.credibility-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.credibility-card:hover {
    transform: translateY(-5px);
}

.credibility-icon {
    max-height: 80px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.credibility-title {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 1rem;
}

.rebate-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
}

.rebate-image:hover {
    transform: scale(1.02);
}

/* ==========================================
   SIX REASONS SECTION - RESPONSIVE
   ========================================== */

.six-reasons-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.six-reasons-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.six-reasons-section .uk-text-medium,
.six-reasons-section .uk-text-large {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.reasons-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.reasons-list li {
    padding-left: 35px;
    margin-bottom: 1rem;
    position: relative;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: #333;
}

.reasons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 20px;
}

/* ==========================================
   BENEFITS SECTION - RESPONSIVE
   ========================================== */

.benefits-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 3rem 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;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-icon img {
    max-height: 60px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    color: var(--secondary-green);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* ==========================================
   CTA SECTION - RESPONSIVE
   ========================================== */

.cta-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem;
}

.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(1.5rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-white-button {
    background: white !important;
    color: var(--primary-blue) !important;
    border: 2px solid white !important;
}

.cta-white-button:hover {
    background: transparent !important;
    color: white !important;
    border-color: white !important;
}

/* ==========================================
   SECTION STYLES - RESPONSIVE
   ========================================== */

.section-light {
    background: var(--light-gray);
    padding: 3rem 0;
}

.section-white {
    background: var(--white);
    padding: 3rem 0;
}

.uk-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.uk-section-primary {
    background: var(--gradient-hero) !important;
}

.uk-section-secondary {
    background: var(--text-dark) !important;
}

.uk-section-muted {
    background: var(--light-gray) !important;
}

/* ==========================================
   FOOTER - RESPONSIVE
   ========================================== */

.footer-title {
    color: var(--primary-light-blue);
    font-size: clamp(1.1rem, 2vw, 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;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-light-blue);
}

.footer-attribution {
    padding: 1rem 0;
    margin-top: 1rem;
}

/* ==========================================
   NAVIGATION - RESPONSIVE
   ========================================== */

.navbar-cont {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}

.logo-text {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* ==========================================
   GET STARTED PAGE - RESPONSIVE
   ========================================== */

.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: 3rem 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: 2rem;
    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;
}

/* ==========================================
   BLOG STYLES - RESPONSIVE
   ========================================== */

.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: 3rem 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-section p {
    font-size: clamp(1rem, 2vw, 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-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);
    margin-bottom: 2rem;
}

.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%;
    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: clamp(1.1rem, 2vw, 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);
}

.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);
}

.single-post-container {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray);
}

.single-post-article .post-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.single-post-article .post-content {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-dark);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.fade-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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 BREAKPOINTS
   ========================================== */

/* Small Tablets (641px - 768px) */
@media (min-width: 641px) {
    .step-number {
        width: 65px;
        height: 65px;
    }

    .premium-feature-icon {
        width: 85px;
        height: 85px;
    }

    .benefit-icon {
        width: 90px;
        height: 90px;
    }

    .video-container-wrapper {
        height: 300px;
    }

    .uk-button {
        font-size: 15px;
        padding: 14px 35px;
    }

    .form-card {
        padding: 2.5rem;
    }
}

/* Tablets (769px - 959px) */
@media (min-width: 769px) {
    .hero-section {
        min-height: 90vh;
    }

    .premium-features-section,
    .six-reasons-section,
    .benefits-section,
    .cta-section {
        padding: 4rem 0;
    }

    .section-light,
    .section-white {
        padding: 4rem 0;
    }

    .video-container-wrapper {
        height: 350px;
    }

    .credibility-icon {
        max-height: 100px;
    }

    .play-button,
    .play-button-overlay {
        width: 70px;
        height: 70px;
    }

    .premium-feature-card,
    .benefit-card,
    .step-card {
        margin-bottom: 0;
    }

    .stat-card {
        margin-bottom: 0;
    }
}

/* Desktop (960px+) */
@media (min-width: 960px) {
    .hero-section {
        background-position: center;
        padding: 0;
    }

    .hero-section::before {
        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%);
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .premium-features-section,
    .six-reasons-section,
    .benefits-section {
        padding: 5rem 0;
    }

    .cta-section {
        padding: 4rem 2rem;
    }

    .section-light,
    .section-white {
        padding-bottom: 4rem;
    }

    .video-container-wrapper {
        height: 400px;
    }

    .play-button,
    .play-button-overlay {
        width: 80px;
        height: 80px;
    }

    .step-number {
        width: 70px;
        height: 70px;
    }

    .premium-feature-icon {
        width: 90px;
        height: 90px;
    }

    .benefit-icon {
        width: 100px;
        height: 100px;
    }

    .credibility-icon {
        max-height: 120px;
    }

    .credibility-section {
        min-height: 60vh;
        padding: 4rem 0;
    }

    .six-reasons-section {
        min-height: 100vh;
    }

    .form-card {
        padding: 3rem;
    }

    .single-post-container {
        padding: 3rem;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .premium-features-section,
    .six-reasons-section,
    .benefits-section {
        padding: 6rem 0;
    }

    .video-container-wrapper {
        height: 450px;
    }
}

/* Extra Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .video-container-wrapper {
        height: 500px;
    }
}

/* ==========================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================== */

@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;
    }
}

@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-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;
    }
    
    .uk-button-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .credibility-icon {
        max-height: 80px;
    }
    
    .play-button,
    .play-button-overlay {
        width: 60px;
        height: 60px;
    }

    .video-container-wrapper {
        height: 250px !important;
    }

    .form-card {
        padding: 1.5rem;
    }

    .single-post-container {
        padding: 1.5rem;
    }

    .uk-button {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2.5rem 0 2rem;
    }
}

/* ==========================================
   ACCESSIBILITY ENHANCEMENTS
   ========================================== */

a:focus,
button:focus,
.uk-button:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    .step-card,
    .premium-feature-card,
    .benefit-card,
    .stat-card,
    .blog-post-card {
        border: 2px solid #000;
    }

    .uk-button {
        border-width: 3px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .step-card:hover,
    .premium-feature-card:hover,
    .benefit-card:hover,
    .stat-card:hover,
    .blog-post-card:hover {
        transform: none;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .uk-button,
    .uk-modal,
    .video-wrapper,
    .video-container-wrapper,
    .scroll-to-top,
    .navbar-cont {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .step-card,
    .premium-feature-card,
    .benefit-card,
    .stat-card,
    .blog-post-card {
        page-break-inside: avoid;
    }
}