@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-green: #2E7D32;
    --light-green: #81C784;
    --accent-green: #4CAF50;
    --dark-green: #1B5E20;
    --gradient-start: #43A047;
    --gradient-end: #1B5E20;
    --bg-light: #F8FBF8;
    --bg-section-1: #FFFFFF;
    --bg-section-2: #F1F8E9;
    --bg-section-3: #E8F5E9;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9E9E9E;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.logo {
    display: flex;
    align-items: baseline;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-ext {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-section-2) 0%, var(--bg-section-3) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-brand {
    margin-bottom: 40px;
}

.hero-logo {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(46, 125, 50, 0.15);
}

.hero-logo-ext {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-green);
    vertical-align: super;
}

.hero-slogan {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 10px;
}

.hero-cta {
    padding: 12px 28px;
    font-size: 15px;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 5px 5px 5px 0;
}

.search-bar:focus-within {
    border-color: var(--light-green);
    box-shadow: var(--shadow-hover);
}

.search-bar input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.search-bar input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn-icon i {
    font-size: 18px;
}

.search-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--bg-section-2);
}

.search-result-item:last-child {
    border-bottom: none;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

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

/* Ad Section */
.ad-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
}

.ad-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.ad-card img {
    max-width: 120px;
    border-radius: 8px;
}

.ad-card p {
    color: var(--text-dark);
    font-size: 16px;
    flex: 1;
    min-width: 200px;
}

/* Categories Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.section-title span {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

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

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

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--primary-green);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    color: var(--white);
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.show-more-btn {
    display: block;
    margin: 30px auto 0;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.show-more-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.category-hidden {
    display: none;
}

/* Intro Section */
.intro-section {
    background: var(--bg-section-2);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.intro-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.intro-card h3 {
    font-size: 22px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.intro-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Featured Listings */
.featured-section {
    background: var(--white);
}

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

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

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

.listing-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-green);
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-content {
    padding: 20px;
}

.listing-category {
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.listing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.listing-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.listing-meta i {
    color: var(--primary-green);
}

/* Slider Section */
.slider-section {
    overflow: hidden;
    padding: 60px 0;
}

.slider-section.alt-bg {
    background: var(--bg-section-2);
}

.slider-track {
    display: flex;
    gap: 25px;
    animation: scroll 20s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 125px));
    }
}

.slider-card {
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.slider-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-green);
}

.slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-card-content {
    padding: 20px;
}

.slider-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.slider-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.slider-card .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-btn {
    background: var(--white);
    color: var(--primary-green);
}

.cta-section .cta-btn:hover {
    background: #f5f5f5;
}

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

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-green);
}

.footer-col p,
.footer-col a {
    color: #B0BEC5;
    font-size: 14px;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--light-green);
}

.footer-col .footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-col .footer-logo-ext {
    font-size: 12px;
    color: var(--light-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background: var(--primary-green);
    color: var(--white);
}

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

.footer-bottom p {
    color: #78909C;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-gray);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
}

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

.breadcrumb span {
    color: var(--text-light);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Single Listing */
.single-listing {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.listing-gallery {
    height: 400px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-green);
}

.listing-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.listing-details {
    padding: 40px;
}

.listing-details h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.listing-info {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.listing-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.listing-info-item i {
    color: var(--primary-green);
    font-size: 18px;
    width: 20px;
}

.listing-info-item span {
    color: var(--text-gray);
}

/* Review Section */
.reviews-section {
    margin-top: 40px;
}

.review-card {
    background: var(--bg-section-2);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-rating {
    color: #FFC107;
}

.review-content {
    color: var(--text-gray);
}

.review-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating i {
    font-size: 24px;
    color: #E0E0E0;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating i:hover,
.star-rating i.active {
    color: #FFC107;
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-green);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-section-2), var(--bg-section-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-green);
}

.contact-item-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-gray);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* 404 Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.error-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover,
.pagination .active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

/* Step Form */
.step-form {
    max-width: 700px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    margin-right: 10px;
}

.step.active .step-number {
    background: var(--primary-green);
}

.step-line {
    width: 80px;
    height: 3px;
    background: #E0E0E0;
    margin: 0 15px;
}

.step.completed .step-number {
    background: var(--primary-green);
}

.step.completed + .step .step-line {
    background: var(--primary-green);
}

.step-content {
    display: none;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.step-content.active {
    display: block;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #E8F5E9;
    color: var(--dark-green);
    border: 1px solid var(--light-green);
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #90CAF9;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .listings-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-logo {
        font-size: 40px;
    }
    
    .hero-logo-ext {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .listings-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .step-line {
        width: 40px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .ad-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .search-bar {
        flex-direction: row;
        border-radius: 50px;
        padding: 4px 4px 4px 0;
    }
    
    .search-bar input {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .search-btn-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .search-btn-icon i {
        font-size: 16px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .hero-logo {
        font-size: 48px;
    }
    
    .hero-logo-ext {
        font-size: 16px;
    }
    
    .hero-cta {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        display: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Blog Section */
.blog-section {
    background: var(--bg-section-2);
}

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

.blog-card .read-more {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    transition: var(--transition);
}

.blog-card:hover .read-more {
    gap: 10px;
}

/* Clickable Contact Links */
.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--light-green) !important;
}

.contact-item-link {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.contact-item-link:hover {
    transform: translateX(5px);
}

.contact-item-link:hover i {
    background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
    color: var(--white);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        font-size: 52px;
    }
}
