﻿:root {
    --primary-color: #0B2D57;
    --secondary-color: #18A957;
    --accent-color: #12C2E9;
    --energy-green: #18A957;
    --electric-cyan: #12C2E9;
    --warm-amber: #F5A623;
    --text-dark: #1A1A1A;
    --text-light: #9AA4B2;
    --bg-light: #F5F7FA;
    --card-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0B2D57 0%, #18A957 100%);
    --gradient-energy: linear-gradient(135deg, #18A957 0%, #12C2E9 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0b2d57 0%, #143f73 100%);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.top-bar-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.top-bar-item:hover {
    color: #ffffff;
}

.top-bar-cta {
    background: linear-gradient(135deg, #16b96a 0%, #1db8da 100%);
    border-radius: 999px;
    padding: 8px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-bar-cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(18, 194, 233, 0.25);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.16);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.top-bar-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .dropdown-menu {
    border: 0;
    border-radius: 12px;
    padding: 8px;
    min-width: 220px;
    box-shadow: 0 14px 28px rgba(11, 45, 87, 0.14);
}

.navbar-nav .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
    background: rgba(24, 169, 87, 0.12);
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar .btn-primary {
    border-radius: 25px;
    padding: 8px 25px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    border-radius: 12px;
    padding: 15px 35px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(11, 45, 87, 0.92) 0%, rgba(24, 169, 87, 0.85) 100%), url('https://images.unsplash.com/photo-1610312314835-b2f3f1a1e3c7?w=1920');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(18, 194, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-section .btn {
    position: relative;
    overflow: hidden;
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: -webkit-linear-gradient(135deg, #0B2D57, #18A957);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card .price-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-card .city-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover i,
.feature-box:hover h4,
.feature-box:hover p {
    color: white;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.feature-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.feature-box p {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

/* Services Card */
.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 25px;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Station Card */
.station-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.station-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.station-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.station-card .station-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.station-card .station-info i {
    width: 25px;
    color: var(--primary-color);
}

/* Form Styles */
.form-control {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

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

/* Calculator */
.calculator-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calculator-result {
    background: linear-gradient(135deg, #0B2D57, #18A957);
    color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.calculator-result .result-amount {
    font-size: 3rem;
    font-weight: 700;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    padding: 20px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: var(--bg-light);
    padding: 20px;
}

/* Testimonial */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

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

.testimonial-card .rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-card .client-name {
    font-weight: 600;
    margin-top: 15px;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0B2D57 0%, #18A957 100%);
    padding: 60px 0;
    color: white;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Blog UI */
.blog-home-shell,
.blog-page-shell {
    background:
        radial-gradient(circle at top right, rgba(18, 194, 233, 0.08), transparent 45%),
        radial-gradient(circle at bottom left, rgba(24, 169, 87, 0.08), transparent 50%);
}

.blog-section-title {
    margin-bottom: 40px;
}

.blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #0b2d57;
    background: rgba(18, 194, 233, 0.12);
    border: 1px solid rgba(18, 194, 233, 0.22);
    margin-bottom: 14px;
}

.blog-card {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 45, 87, 0.08);
    border: 1px solid rgba(11, 45, 87, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11, 45, 87, 0.14);
    border-color: rgba(24, 169, 87, 0.22);
}

.blog-card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.06);
}

.blog-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 45, 87, 0) 35%, rgba(11, 45, 87, 0.72) 100%);
}

.blog-card-category {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #0b2d57;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.blog-card-date-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    background: linear-gradient(135deg, #18a957, #12c2e9);
    color: #fff;
    width: 54px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.05;
    box-shadow: 0 8px 20px rgba(11, 45, 87, 0.25);
    padding: 8px 6px;
}

.blog-card-date-badge .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.blog-card-date-badge .month {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 18px 20px 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 13px;
    color: #6f7a87;
}

.blog-meta i {
    color: #18a957;
    margin-right: 6px;
}

.blog-card-title {
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0b2d57;
}

.blog-card-text {
    color: #4d5b6a;
    margin-bottom: 16px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b2d57;
    font-weight: 700;
    text-decoration: none;
}

.blog-card-link i {
    transition: transform 0.25s ease;
}

.blog-card-link:hover {
    color: #18a957;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

.blog-chip {
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #18a957;
    background: rgba(24, 169, 87, 0.1);
}

.blog-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.blog-keyword-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #0b2d57;
    background: rgba(18, 194, 233, 0.12);
    border: 1px solid rgba(18, 194, 233, 0.25);
}

.blog-site-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: #18a957;
}

.blog-site-link:hover {
    color: #0b2d57;
}

.blog-cta-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 45, 87, 0.08);
    box-shadow: 0 18px 46px rgba(11, 45, 87, 0.1);
}

.blog-detail-image-wrapper {
    max-height: 460px;
    overflow: hidden;
}

.blog-detail-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.blog-detail-content {
    padding: 28px;
}

.blog-detail-title {
    margin-bottom: 16px;
    font-size: 2rem;
}

.blog-excerpt {
    color: #455566;
    font-size: 1.07rem;
    border-left: 4px solid rgba(24, 169, 87, 0.4);
    padding-left: 14px;
    margin-bottom: 20px;
}

.blog-body {
    color: #2d3a48;
    line-height: 1.85;
    white-space: pre-line;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 600;
    color: #0b2d57;
    background: rgba(11, 45, 87, 0.06);
}

.blog-back-btn:hover {
    color: #18a957;
}

/* Contact Info */
.contact-info-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .price-card .price {
        font-size: 2rem;
    }
    
    .calculator-result .result-amount {
        font-size: 2rem;
    }
}

/* Buttons */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Benefits List */
.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* VDG Gas Custom Styles */
.text-brand {
    color: var(--primary-color);
}

.text-energy {
    color: var(--energy-green);
}

.bg-brand {
    background-color: var(--primary-color);
}

.bg-energy {
    background-color: var(--energy-green);
}

.gradient-text {
    background: linear-gradient(135deg, #0B2D57, #18A957);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-energy {
    background: linear-gradient(135deg, #18A957, #12C2E9);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-energy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 169, 87, 0.4);
    color: white;
}

.btn-brand {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background: #0a1f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 45, 87, 0.4);
    color: white;
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, #0B2D57 0%, #18A957 100%);
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}

.stat-card h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Franchise Cards */
.franchise-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.franchise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--energy-green);
}

.franchise-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.franchise-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 45, 87, 0.1), rgba(24, 169, 87, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.franchise-card .icon-box i {
    font-size: 2rem;
    color: var(--energy-green);
}

/* Benefit Card */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ROI Highlight Box */
.roi-box {
    background: linear-gradient(135deg, #0B2D57, #18A957);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
}

.roi-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.roi-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.roi-stat {
    text-align: center;
    padding: 20px;
}

.roi-stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.roi-stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* CSR Cards */
.csr-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
}

.csr-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.csr-card .csr-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B2D57, #18A957);
}

.csr-card .csr-icon i {
    font-size: 4rem;
    color: white;
}

.csr-card .card-body {
    padding: 25px;
}

.csr-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Career Cards */
.career-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--energy-green);
}

.career-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.career-card h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.career-card .job-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.career-card .job-meta i {
    color: var(--energy-green);
    margin-right: 5px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-item i {
    font-size: 2rem;
    color: var(--energy-green);
    margin-bottom: 15px;
}

.industry-item h6 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* Form Focus */
.form-control:focus {
    border-color: var(--energy-green);
    box-shadow: 0 0 0 3px rgba(24, 169, 87, 0.1);
}

.form-select:focus {
    border-color: var(--energy-green);
    box-shadow: 0 0 0 3px rgba(24, 169, 87, 0.1);
}

/* Navbar Brand Colors */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--energy-green);
}

/* Footer Enhancement */
footer {
    background: linear-gradient(135deg, #0B2D57 0%, #1a1a1a 100%) !important;
}

footer h5 {
    color: var(--energy-green);
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 15px;
}

.card.shadow-sm {
    box-shadow: var(--shadow-sm);
}

/* Image Hover Effect */
.img-hover {
    overflow: hidden;
    border-radius: 15px;
}

.img-hover img {
    transition: transform 0.5s ease;
}

.img-hover:hover img {
    transform: scale(1.1);
}

/* Tab Navigation */
.nav-tabs .nav-link {
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 15px 25px;
}

.nav-tabs .nav-link.active {
    background: transparent;
    color: var(--energy-green);
    border-bottom: 3px solid var(--energy-green);
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--primary-color);
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(11, 45, 87, 0.05), rgba(24, 169, 87, 0.05));
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--energy-green);
}

.info-box h5 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Document Cards */
.doc-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.doc-card i {
    font-size: 2.5rem;
    color: #dc3545;
    margin-right: 20px;
}

.doc-card h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.doc-card p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hero Section Enhanced */
.hero-section {
    background: linear-gradient(135deg, #0B2D57 0%, #1a4a7a 50%, #18A957 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(24, 169, 87, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

.hero-badge .badge {
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--energy-green);
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 8px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.min-vh-70 {
    min-height: 70vh;
}

/* Hero Card */
.hero-image-wrapper {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.hero-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.hero-card-body {
    padding: 25px;
}

.roi-preview {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.roi-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.roi-item strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Stats Bar */
.stats-bar {
    background: white;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    margin-top: -1px;
    position: relative;
    z-index: 10;
}

.stats-item {
    padding: 20px;
}

.stats-item i {
    font-size: 2rem;
    color: var(--energy-green);
    margin-bottom: 10px;
}

.stats-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Opportunity Cards */
.opportunity-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    border-color: var(--energy-green);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.opportunity-icon i {
    font-size: 2rem;
    color: white;
}

.opportunity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.opportunity-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.opportunity-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.opportunity-list i {
    color: var(--energy-green);
    margin-right: 10px;
}

/* Combo Offer */
.combo-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.combo-offer h3 {
    margin-bottom: 10px;
}

.combo-offer p {
    opacity: 0.9;
}

/* Why Card */
.why-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 1.5rem;
    color: white;
}

.why-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Land Card */
.land-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
}

.land-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.land-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--warm-amber);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.land-header {
    background: linear-gradient(135deg, var(--primary-color), #1a4a7a);
    color: white;
    padding: 30px;
    text-align: center;
}

.land-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.land-header h4 {
    margin-bottom: 0;
}

.land-body {
    padding: 30px;
    text-align: center;
}

.land-area {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--energy-green);
    margin-bottom: 5px;
}

.land-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.land-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.land-features li:last-child {
    border-bottom: none;
}

/* Service Card Advanced */
.service-card-advanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-advanced:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-advanced:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-content a {
    color: var(--energy-green);
    font-weight: 600;
    text-decoration: none;
}

.service-content a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    color: white;
}

.cta-section h2 {
    margin-bottom: 10px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Quick Contact Card */
.quick-contact-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quick-contact-card > .row {
    margin: 0;
}

.quick-contact-card .col-lg-5,
.quick-contact-card .col-lg-7 {
    padding: 40px;
}

.quick-contact-card .col-lg-5 {
    background: linear-gradient(135deg, var(--primary-color), #1a4a7a);
    color: white;
}

.quick-contact-card h3 {
    margin-bottom: 15px;
}

.quick-contact-card .col-lg-5 p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.quick-contact-card .form-control,
.quick-contact-card .form-select {
    border: 2px solid #eee;
    padding: 12px 15px;
    border-radius: 10px;
}

.quick-contact-card .form-control:focus,
.quick-contact-card .form-select:focus {
    border-color: var(--energy-green);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 1 30%;
    }
    
    .land-card.featured {
        transform: none;
    }
    
    .quick-contact-card .col-lg-5 {
        padding: 30px;
    }
    
    .quick-contact-card .col-lg-7 {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 26px 0 46px;
    }

    .hero-section .min-vh-70 {
        min-height: auto;
        align-items: flex-start !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        margin-bottom: 10px !important;
    }

    .hero-badge .badge {
        max-width: 100%;
        white-space: normal;
        text-align: left;
        line-height: 1.3;
        font-size: 0.95rem;
        padding: 10px 14px !important;
        border-radius: 14px !important;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        flex: 1 1 30%;
    }
    
    .stat-number {
        font-size: 1.3rem;
        padding: 8px 12px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }
}

/* Hero Station Image */
.hero-image-wrapper {
    position: relative;
}

.hero-station-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Station Preview Section */
.station-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.station-final-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.station-preview:hover .station-final-image {
    transform: scale(1.02);
}

.station-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.station-badge-overlay span {
    background: rgba(11, 45, 87, 0.9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.station-info {
    padding: 20px;
}

.station-info .section-title {
    margin-bottom: 30px;
}

.feature-highlights {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8fff9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.2rem;
    color: white;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 3px;
    font-size: 1rem;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Section Title Enhancement */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title.text-start {
    text-align: left !important;
}

.section-title.text-start p {
    margin: 0;
}

/* Enhanced Cards */
.opportunity-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    border-color: var(--energy-green);
    box-shadow: 0 20px 60px rgba(24, 169, 87, 0.15);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--energy-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(11, 45, 87, 0.2);
}

.opportunity-icon i {
    font-size: 2rem;
    color: white;
}

.opportunity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.opportunity-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.opportunity-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.opportunity-list li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.opportunity-list li:last-child {
    border-bottom: none;
}

.opportunity-list i {
    color: var(--energy-green);
    margin-right: 10px;
}

/* Combo Offer Enhanced */
.combo-offer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a8a 50%, var(--energy-green) 100%);
    border-radius: 25px;
    padding: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.combo-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.combo-offer > .row {
    position: relative;
    z-index: 2;
}

.combo-offer .combo-cta-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    pointer-events: auto;
}

.combo-offer h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    position: relative;
}

.combo-offer p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
}

/* CTA Section Enhanced */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5a8a 50%, var(--energy-green) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    position: relative;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.1rem;
    position: relative;
}

/* Quick Contact Enhanced */
.quick-contact-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.quick-contact-card > .row {
    margin: 0;
}

.quick-contact-card .col-lg-5,
.quick-contact-card .col-lg-7 {
    padding: 50px;
}

.quick-contact-card .col-lg-5 {
    background: linear-gradient(135deg, var(--primary-color), #1a5a8a);
    color: white;
    position: relative;
    overflow: hidden;
}

.quick-contact-card .col-lg-5::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.quick-contact-card h3 {
    margin-bottom: 15px;
    position: relative;
    font-size: 1.6rem;
}

.quick-contact-card .col-lg-5 p {
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
}

.contact-info-list {
    margin-top: 30px;
    position: relative;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.quick-contact-card .form-control,
.quick-contact-card .form-select {
    border: 2px solid #eee;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-contact-card .form-control:focus,
.quick-contact-card .form-select:focus {
    border-color: var(--energy-green);
    box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.1);
}

@media (max-width: 991px) {
    .station-preview {
        margin-bottom: 40px;
    }
    
    .station-info {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .station-preview {
        border-radius: 15px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .combo-offer {
        padding: 30px;
    }
    
    .quick-contact-card .col-lg-5,
    .quick-contact-card .col-lg-7 {
        padding: 30px;
    }
}

/* Station Preview Box - Franchise Page */
.station-preview-box {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.station-render-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.station-preview-content {
    padding: 40px;
}

.station-preview-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.station-preview-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.preview-features {
    display: grid;
    gap: 12px;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fff9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.preview-feature:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.preview-feature i {
    color: var(--energy-green);
    font-size: 1.1rem;
}

.preview-feature span {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 991px) {
    .station-render-img {
        min-height: 300px;
    }
    
    .station-preview-content {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .blog-detail-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .blog-card-image-wrapper {
        height: 200px;
    }

    .blog-card-body {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 1.08rem;
    }

    .blog-detail-content {
        padding: 18px;
    }

    .blog-detail-title {
        font-size: 1.35rem;
    }
}


