/*
Theme Name: RomanticEscape
Theme URI: https://nikkuchottu.com
Author: NikkuChottu
Author URI: https://nikkuchottu.com
Description: A stunning romantic travel destinations theme inspired by modern ad-tech design. Features hero sections, destination galleries, testimonials, animated stats, and more.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: romantic-escape
Tags: one-column, custom-colors, custom-logo, featured-images, full-width-template, theme-options
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============ VARIABLES ============ */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #ff6b81;
    --accent: #ff9a76;
    --dark: #0d1b2a;
    --dark-light: #1b2838;
    --gradient: linear-gradient(135deg, #e63946 0%, #ff6b81 50%, #ff9a76 100%);
    --gradient-dark: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #2d1b3d 100%);
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --radius: 16px;
    --shadow: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.12);
}

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,0.08); color: var(--primary);
    padding: 8px 20px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 16px;
}
.section-tag i { font-size: 11px; }
.section-title {
    font-size: clamp(32px, 5vw, 48px); font-weight: 800;
    line-height: 1.15; margin-bottom: 20px; color: var(--dark);
}
.section-subtitle {
    font-size: 18px; color: var(--text-light); max-width: 600px;
    line-height: 1.7;
}
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 50px; font-weight: 600;
    font-size: 15px; cursor: pointer; border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--gradient); color: #fff;
    box-shadow: 0 8px 30px rgba(230,57,70,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230,57,70,0.5);
}
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}
.btn-dark {
    background: var(--dark); color: #fff;
    box-shadow: 0 8px 30px rgba(13,27,42,0.3);
}
.btn-dark:hover { transform: translateY(-3px); }

/* ============ TOPBAR ============ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links i { margin-right: 6px; }

/* ============ NAVBAR ============ */
.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0;
    transition: all 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.logo {
    font-size: 24px; font-weight: 800;
    display: flex; align-items: center; gap: 10px;
}
.logo-icon {
    width: 40px; height: 40px; background: var(--gradient);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; color: #fff; font-size: 18px;
}
.logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 10px 18px; border-radius: 10px; font-size: 14px;
    font-weight: 500; color: #555; transition: all 0.3s;
}
.nav-links a:hover { color: var(--primary); background: rgba(230,57,70,0.05); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after {
    content: '\f107'; font-family: 'Font Awesome 6 Free';
    font-weight: 900; margin-left: 6px; font-size: 11px;
}
.dropdown-menu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: #fff; border-radius: 12px; padding: 8px;
    box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.3s;
}
.dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    display: block; padding: 12px 16px; border-radius: 8px; font-size: 14px;
}
.dropdown-menu a:hover { background: var(--bg-light); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 24px; font-size: 14px; }
.mobile-toggle {
    display: none; background: none; border: none;
    font-size: 24px; cursor: pointer; color: var(--dark);
}

/* ============ HERO ============ */
.hero {
    background: var(--gradient-dark);
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('') center/cover;
    opacity: 0.15;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(13,27,42,0.8), transparent);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
    padding: 8px 20px; border-radius: 50px; color: var(--secondary);
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge i { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
    font-size: clamp(40px, 6vw, 64px); font-weight: 900;
    color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 18px; color: rgba(255,255,255,0.7);
    line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats-row {
    display: flex; gap: 40px; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 { font-size: 36px; font-weight: 800; color: #fff; }
.hero-stat h3 span { color: var(--secondary); }
.hero-stat p {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 1px;
    margin: 0; line-height: 1.4;
}
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 32px;
    position: relative;
}
.hero-card img {
    border-radius: 16px; width: 100%;
    height: 360px; object-fit: cover;
    margin-bottom: 20px;
}
.hero-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.hero-card p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.floating-card {
    position: absolute; background: #fff;
    border-radius: 16px; padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
}
.floating-card.card-1 { top: -20px; right: -20px; }
.floating-card.card-2 { bottom: 40px; left: -30px; animation-delay: -2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.floating-card .icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.floating-card .icon.red { background: rgba(230,57,70,0.1); color: var(--primary); }
.floating-card .icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }
.floating-card h4 { font-size: 14px; font-weight: 700; }
.floating-card span { font-size: 12px; color: var(--text-light); }

/* ============ BRAND MARQUEE ============ */
.brands {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brands p {
    text-align: center; font-size: 13px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
    margin-bottom: 32px;
}
.brand-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 60px; flex-wrap: wrap; opacity: 0.4;
}
.brand-logos span {
    font-size: 24px; font-weight: 800; color: var(--dark);
    letter-spacing: -0.5px;
}

/* ============ FEATURES SECTION ============ */
.features { padding: 120px 0; }
.features-header { text-align: center; margin-bottom: 72px; }
.features-header .section-subtitle { margin: 0 auto; }
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.feature-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius); padding: 40px 32px;
    transition: all 0.4s; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient); opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
}
.feature-icon.red { background: rgba(230,57,70,0.08); color: var(--primary); }
.feature-icon.pink { background: rgba(255,107,129,0.08); color: var(--secondary); }
.feature-icon.orange { background: rgba(255,154,118,0.08); color: var(--accent); }
.feature-icon.blue { background: rgba(59,130,246,0.08); color: #3b82f6; }
.feature-icon.purple { background: rgba(139,92,246,0.08); color: #8b5cf6; }
.feature-icon.teal { background: rgba(20,184,166,0.08); color: #14b8a6; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.feature-card .learn-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-size: 14px; font-weight: 600;
    margin-top: 20px; transition: gap 0.3s;
}
.feature-card:hover .learn-more { gap: 10px; }

/* ============ SHOWCASE / SPLIT SECTION ============ */
.showcase { padding: 120px 0; background: var(--bg-light); }
.showcase-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.showcase-image { position: relative; border-radius: 24px; overflow: hidden; }
.showcase-image img {
    width: 100%; height: 480px; object-fit: cover; border-radius: 24px;
}
.showcase-image .overlay-badge {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.overlay-badge .rating { display: flex; align-items: center; gap: 8px; }
.overlay-badge .stars { color: #f59e0b; font-size: 14px; }
.overlay-badge .rating span { font-weight: 700; font-size: 15px; }
.overlay-badge .reviews { font-size: 13px; color: var(--text-light); }
.showcase-content .check-list { margin-top: 32px; }
.check-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 12px 0; font-size: 15px; color: #444;
}
.check-list li i {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(34,197,94,0.1); color: #22c55e;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

/* ============ STATS SECTION ============ */
.stats {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative; overflow: hidden;
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.08;
}
.stats .container { position: relative; z-index: 2; }
.stats-header { text-align: center; margin-bottom: 64px; }
.stats-header .section-tag { background: rgba(255,255,255,0.1); color: var(--secondary); }
.stats-header .section-title { color: #fff; }
.stats-header .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center; padding: 40px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}
.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.stat-card .stat-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(230,57,70,0.15);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 22px; color: var(--secondary);
}
.stat-card h3 {
    font-size: 44px; font-weight: 900; color: #fff;
    margin-bottom: 8px;
}
.stat-card h3 span { color: var(--secondary); }
.stat-card p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ============ DESTINATIONS GRID ============ */
.destinations { padding: 120px 0; }
.destinations-header {
    display: flex; align-items: flex-end;
    justify-content: space-between; margin-bottom: 56px;
}
.dest-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.dest-card {
    border-radius: 20px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: all 0.5s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img {
    width: 100%; height: 380px; object-fit: cover;
    transition: transform 0.6s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card .dest-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}
.dest-card .dest-tag {
    display: inline-block; padding: 4px 14px;
    background: var(--primary); color: #fff;
    border-radius: 50px; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px;
}
.dest-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.dest-card .dest-location {
    color: rgba(255,255,255,0.7); font-size: 14px;
    display: flex; align-items: center; gap: 6px;
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 120px 0; background: var(--bg-light); }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: #fff; border-radius: var(--radius);
    padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 20px; }
.testimonial-card blockquote {
    font-size: 15px; color: #555; line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-author .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient); display: flex;
    align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 18px;
}
.testimonial-author h4 { font-size: 15px; font-weight: 700; }
.testimonial-author span { font-size: 13px; color: var(--text-light); }

/* ============ CTA SECTION ============ */
.cta {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative; overflow: hidden;
    text-align: center;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.1;
}
.cta .container { position: relative; z-index: 2; }
.cta .section-tag { background: rgba(255,255,255,0.1); color: var(--secondary); }
.cta h2 {
    font-size: clamp(36px, 5vw, 52px); font-weight: 900;
    color: #fff; margin-bottom: 20px;
}
.cta p {
    font-size: 18px; color: rgba(255,255,255,0.6);
    max-width: 600px; margin: 0 auto 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .newsletter {
    display: flex; max-width: 500px; margin: 40px auto 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 60px; padding: 6px;
}
.cta .newsletter input {
    flex: 1; background: transparent; border: none;
    padding: 14px 24px; color: #fff; font-size: 15px;
    outline: none;
}
.cta .newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.cta .newsletter button {
    background: var(--gradient); color: #fff;
    border: none; padding: 14px 28px; border-radius: 50px;
    font-weight: 600; font-size: 14px; cursor: pointer;
    transition: all 0.3s;
}
.cta .newsletter button:hover {
    box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
    color: #fff; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 24px;
}
.footer-col a {
    display: block; font-size: 14px; padding: 6px 0;
    color: rgba(255,255,255,0.5); transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom a:hover { color: #fff; }

/* ============ MOBILE NAV ============ */
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
}
.mobile-menu.active { display: block; }
.mobile-menu-inner {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 300px; background: #fff; padding: 24px;
    overflow-y: auto;
}
.mobile-menu-inner .close-btn {
    background: none; border: none; font-size: 24px;
    cursor: pointer; margin-bottom: 24px;
}
.mobile-menu-inner a {
    display: block; padding: 14px 0; font-size: 16px;
    font-weight: 500; color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============ WORDPRESS OVERRIDES ============ */
.wp-block-image img { border-radius: 12px; }
.entry-content { padding: 40px 0; }
.page-template-default .entry-content { max-width: 800px; margin: 0 auto; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 60px 0; min-height: auto; }
    .hero h1 { font-size: 36px; }
    .hero-stats-row { gap: 24px; }
    .hero-stat h3 { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .destinations-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* Blog Section */
.blog-section { padding: 100px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.blog-card-image { overflow: hidden; height: 220px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 24px; }
.blog-card-meta { display: flex; gap: 15px; font-size: 0.85rem; color: #888; margin-bottom: 12px; }
.blog-card-meta i { color: var(--primary); margin-right: 4px; }
.blog-card-content h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-content h3 a { color: var(--dark); text-decoration: none; transition: color 0.3s; }
.blog-card-content h3 a:hover { color: var(--primary); }
.blog-card-content p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
