@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* ================================
           CSS RESET & CUSTOM PROPERTIES
           ================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF7A59;
    --primary-dark: #e8613e;
    --primary-light: #fff3f0;
    --dark: #1a1a2e;
    --text: #2d2d2d;
    --text-muted: #666;
    --text-light: #999;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --border: #e0e0e0;
    --shadow: 0 2px 20px rgba(0, 0, 0, .08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, .15);
    --radius: 8px;
    --radius-lg: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-height: 70px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
           UTILITY CLASSES
           ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

/* Scroll fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Post meta */
.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.post-meta .author {
    font-weight: 600;
    color: var(--text);
}

/* ================================
           NAVIGATION
           ================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    height: var(--nav-height);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    font-size: 21px;
    font-weight: 800;
    color: var(--dark);
    flex-shrink: 0;
    letter-spacing: -.3px;
}

.nav-logo span {
    color: var(--primary);
}

/* Desktop nav list */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link svg {
    width: 13px;
    height: 13px;
    transition: transform .2s ease;
}

.nav-item:hover .nav-link svg,
.nav-item.dropdown-open .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    min-width: 190px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .22s ease;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}

.mobile-nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.mobile-nav-item.dropdown-open>.mobile-nav-link svg {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    padding: 0 0 12px 16px;
}

.mobile-dropdown.open {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 10px 0;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

/* ================================
           IMAGE PLACEHOLDERS
           ================================ */
.img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .25);
}

.img-ph--dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.img-ph--orange {
    background: linear-gradient(135deg, #FF7A59 0%, #FF5733 100%);
}

.img-ph--teal {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.img-ph--purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.img-ph--blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.img-ph--pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.img-ph--gold {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}


/* ================================
           HOME PAGE – HERO
           ================================ */
.hero-section {
    padding: 56px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 40px;
    align-items: start;
}

.hero-main-card {
    cursor: pointer;
}

.hero-main-card:hover .hero-img-wrap .img-ph {
    transform: scale(1.03);
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 390px;
}

.hero-img-wrap .img-ph {
    transition: transform .5s ease;
}

.hero-content {
    padding: 20px 0 0;
}

.hero-content .tag {
    margin-bottom: 12px;
}

.hero-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 12px;
}

.hero-title a:hover {
    color: var(--primary);
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15px;
}

/* Featured sidebar */
.featured-sidebar h3 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.featured-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.featured-item:last-child {
    border-bottom: none;
}

.featured-item:hover .featured-item-title {
    color: var(--primary);
}

.featured-item-title {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--dark);
    margin-bottom: 6px;
    transition: var(--transition);
}

.featured-item-meta {
    font-size: 11.5px;
    color: var(--text-light);
    display: flex;
    gap: 6px;
}

/* Latest posts grid */
.posts-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.post-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.post-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.post-card-img {
    height: 170px;
    overflow: hidden;
}

.post-card-img .img-ph {
    transition: transform .5s ease;
}

.post-card:hover .post-card-img .img-ph {
    transform: scale(1.06);
}

.post-card-body {
    padding: 18px;
}

.post-card-body .tag {
    margin-bottom: 8px;
}

.post-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 10px;
    transition: var(--transition);
}

.post-card:hover .post-card-title {
    color: var(--primary);
}

.post-card-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Category strip */
.category-section {
    padding: 56px 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

.category-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.see-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.see-more:hover {
    text-decoration: underline;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}


/* ================================
           ABOUT PAGE
           ================================ */
.about-section {
    padding: 96px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 440px;
}

.about-text .tag {
    margin-bottom: 14px;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ================================
           REVIEWS PAGE
           ================================ */
.reviews-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews-header .section-title {
    margin-top: 14px;
}

.reviews-header .section-subtitle {
    margin: 12px auto 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #FFB800;
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.author-info span {
    font-size: 11.5px;
    color: var(--text-light);
}


/* ================================
           RANKING PAGE
           ================================ */
.ranking-section {
    padding: 96px 0;
}

.ranking-header {
    text-align: center;
    margin-bottom: 56px;
}

.ranking-header .section-title {
    margin-top: 14px;
}

.ranking-header .section-subtitle {
    margin: 12px auto 0;
}

.ranking-table-wrap {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ranking-table thead {
    background: var(--dark);
    color: #fff;
}

.ranking-table th {
    padding: 15px 18px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ranking-table td {
    padding: 14px 18px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.ranking-table tbody tr:hover td {
    background: var(--primary-light);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.rank-badge.gold {
    background: #FFD700;
    color: #333;
}

.rank-badge.silver {
    background: #C0C0C0;
    color: #333;
}

.rank-badge.bronze {
    background: #CD7F32;
    color: #fff;
}

.rank-num {
    font-weight: 800;
    font-size: 16px;
    color: var(--primary);
}

.progress-bar {
    width: 110px;
    height: 7px;
    background: var(--bg-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
}


/* ================================
           TESTIMONIALS PAGE
           ================================ */
.testimonials-section {
    padding: 96px 0;
    background: var(--dark);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-header .section-title {
    margin-top: 14px;
    color: #fff;
}

.testimonials-header .section-subtitle {
    margin: 12px auto 0;
    color: rgba(255, 255, 255, .65);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 38px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--primary);
}

.quote-mark {
    font-size: 72px;
    color: var(--primary);
    line-height: .7;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-author span {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}


/* ================================
           FAQ PAGE
           ================================ */
.faq-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .section-title {
    margin-top: 14px;
}

.faq-header .section-subtitle {
    margin: 12px auto 0;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--dark);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.85;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* ================================
           BLOG PAGE
           ================================ */
.blog-section {
    padding: 96px 0;
}

.blog-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-header .section-title {
    margin-top: 14px;
}

.blog-header .section-subtitle {
    margin: 12px auto 0;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 7px 20px;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: transparent;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-family: var(--font);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.blog-card-img {
    height: 210px;
    overflow: hidden;
}

.blog-card-img .img-ph {
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img .img-ph {
    transform: scale(1.07);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body .tag {
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.read-more {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 3px;
}


/* ================================
           CAUTION PAGE
           ================================ */
.caution-section {
    padding: 96px 0;
    background: #fff8f0;
}

.caution-header {
    text-align: center;
    margin-bottom: 48px;
}

.caution-header .section-title {
    margin-top: 14px;
}

.caution-header .section-subtitle {
    margin: 12px auto 0;
}

.caution-banner {
    background: linear-gradient(135deg, #FF7A59, #e8613e);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    color: #fff;
    margin-bottom: 44px;
}

.caution-banner h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.caution-banner p {
    font-size: 15px;
    opacity: .9;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.caution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.caution-item {
    background: #fff;
    border: 1px solid #ffe0d0;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 26px;
}

.caution-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.caution-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.caution-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
}


/* ================================
           PRIVACY POLICY PAGE
           ================================ */
.privacy-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.privacy-content {
    max-width: 780px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    margin: 14px 0 6px;
}

.privacy-date {
    font-size: 12.5px;
    color: var(--text-light);
    margin-bottom: 36px;
}

.privacy-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.privacy-block h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-block h3 .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.privacy-block p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-block ul {
    padding-left: 20px;
    list-style: disc;
}

.privacy-block ul li {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 5px;
}


/* ================================
           CONTACT PAGE
           ================================ */
.contact-section {
    padding: 96px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 56px;
}

.contact-header .section-title {
    margin-top: 14px;
}

.contact-header .section-subtitle {
    margin: 12px auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.contact-info>p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-detail-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: 7px;
    font-size: 13.5px;
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 122, 89, .14);
}

.form-group textarea {
    resize: vertical;
    min-height: 115px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


/* ================================
           FOOTER
           ================================ */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 36px;
    margin-bottom: 44px;
}

.footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    line-height: 1.7;
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.newsletter-form input {
    padding: 10px 13px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: var(--font);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(255, 122, 89, .4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 997;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 122, 89, .5);
}

.info-section {
    padding: 52px 0;
    background: var(--bg-alt, #f9f9f9);
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    margin-bottom: 16px;
}

.info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-block li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-block .info-icon {
    color: var(--accent, #e05);
    font-weight: bold;
}

.info-block table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.info-block thead tr {
    background: var(--accent, #e05);
    color: #fff;
    text-align: left;
}

.info-block th,
.info-block td {
    padding: 10px 14px;
}

.info-block tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.info-block tbody tr.row-alt {
    background: #fafafa;
}

.info-block td.cell-bold {
    font-weight: bold;
}

/* ================================
           RESPONSIVE
           ================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 260px;
        gap: 28px;
    }

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .nav-menu,
    .nav-right .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .featured-sidebar {
        display: none;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap {
        height: 260px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .caution-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-img-wrap {
        height: 240px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 22px;
    }
}