/**
 * Fuel Optimization Page Styles
 * WordPress Compatible CSS
 */

/* Reset and Base Styles */


:root{
--primary-color:#23BDAA;
--seegreen-color:#2DBAA9;
--light-seegreen:#1BABA0;
  --white:#fff;
  --dark-blue:#0B302B;
  --dark-green:#065f58;
  --darker-grey:#333;
  --black:#000;
  --lightgrey:#C1C1C1;
}
.fuel-optimization-wrapper * {
    box-sizing: border-box;
}
@font-face {
  font-family: 'visby_cfbold';
  src: url('../../uploads/fonts/VisbyBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'visby_cfregular';
  src: url('../../uploads/fonts/VisbyRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

p{
    font-size: 1rem;
}
.fuel-optimization-wrapper {
      font-family: 'visby_cfregular';
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; */
    line-height: 1.6;
    color: #333;
}

/* Container */
.fuel-optimization-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.fuel-optimization-wrapper .fuel-hero-section .container {
	max-width: 1400px;
}
/* Section Titles */
.fuel-optimization-wrapper .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
    font-family: 'visby_cfbold';
    text-align: center;
}

.fuel-optimization-wrapper .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

/* Hero Section */
.fuel-optimization-wrapper .fuel-hero-section {
    background: linear-gradient(180deg, #06342E, #065f58);
    /* background: linear-gradient(135deg, #2C5F5D 0%, var(--primary-color) 100%); */
    color: white;
    padding: 4rem 0 4rem;
}

.fuel-optimization-wrapper .hero-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 1rem;
    align-items: center;
}

.fuel-optimization-wrapper .hero-title {
    font-size: 3rem;
      font-family: 'visby_cfbold';
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fuel-optimization-wrapper .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.fuel-optimization-wrapper .savings-highlight {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.fuel-optimization-wrapper .savings-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.fuel-optimization-wrapper .savings-text {
    opacity: 0.9;
    font-size: 1rem;
}

.fuel-optimization-wrapper .hero-cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.fuel-optimization-wrapper .hero-cta-button:hover {
    background: #3bb3b3;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.fuel-optimization-wrapper .hero-image {
    text-align: center;
}

.fuel-optimization-wrapper .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Impact Section */
.fuel-optimization-wrapper .impact-section {
    padding: 5rem 0;
    background: white;
}

.fuel-optimization-wrapper .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-optimization-wrapper .impact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.fuel-optimization-wrapper .impact-card:hover {
    border-color: var(--dark-green);
    transform: translateY(-5px);
}

.fuel-optimization-wrapper .impact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--seegreen-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.fuel-optimization-wrapper .impact-number {
    font-size: 2.5rem;
    font-weight: 700;
      font-family: 'visby_cfbold';
    color: #2C5F5D;
    margin-bottom: 0.5rem;
}

.fuel-optimization-wrapper .impact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.fuel-optimization-wrapper .impact-description {
    color: #666;
    font-size: 0.9rem;
}

/* Features Section */
.fuel-optimization-wrapper .features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.fuel-optimization-wrapper .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-optimization-wrapper .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fuel-optimization-wrapper .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fuel-optimization-wrapper .feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.fuel-optimization-wrapper .feature-icon-small {
    width: 40px;
    height: 40px;
    background: #f0f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.fuel-optimization-wrapper .feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
      font-family: 'visby_cfbold';
    color: #333;
    margin: 0;
}

.fuel-optimization-wrapper .feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fuel-optimization-wrapper .feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fuel-optimization-wrapper .feature-benefits li {
      font-family: 'visby_cfregular';
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.fuel-optimization-wrapper .feature-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Theft Detection Section */
.fuel-optimization-wrapper .theft-section {
    padding: 5rem 0;
    background: white;
}

.fuel-optimization-wrapper .theft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-optimization-wrapper .theft-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.fuel-optimization-wrapper .theft-card.card-fraud {
    border-left-color: var(--primary-color);
}

.fuel-optimization-wrapper .theft-card.internal-theft {
    border-left-color: var(--primary-color);
}

.fuel-optimization-wrapper .theft-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.fuel-optimization-wrapper .theft-card.card-fraud h4 {
    color: var(--primary-color);
}
.theft-section h4{
      font-family: 'visby_cfbold';
}
.fuel-optimization-wrapper .theft-card.internal-theft h4 {
    color: var(--primary-color);

}

.fuel-optimization-wrapper .detection-methods,
.fuel-optimization-wrapper .prevention-methods {
    margin-top: 1rem;
}

.fuel-optimization-wrapper .detection-methods h5,
.fuel-optimization-wrapper .prevention-methods h5 {
      font-family: 'visby_cfbold';
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.fuel-optimization-wrapper .method-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fuel-optimization-wrapper .method-list li {
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.85rem;
    color: #666;
}

.fuel-optimization-wrapper .method-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Optimization Strategies */
.fuel-optimization-wrapper .optimization-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.fuel-optimization-wrapper .optimization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-optimization-wrapper .optimization-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--dark-green);
}

.fuel-optimization-wrapper .optimization-card h4 {
    /* color: #2C5F5D; */
    background: linear-gradient(180deg, #06342E, #065f58);
  -webkit-background-clip: text; /* for Safari/Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text; 
      font-family: 'visby_cfbold';
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.fuel-optimization-wrapper .efficiency-badge {
    /* background: #e8f5e8; */
    background-image: linear-gradient(180deg, #06342E, #065f58) !important;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Testimonials */
.fuel-optimization-wrapper .testimonials-section {
    padding: 5rem 0;
    background: white;
}

.fuel-optimization-wrapper .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fuel-optimization-wrapper .testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.fuel-optimization-wrapper .stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.fuel-optimization-wrapper .testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fuel-optimization-wrapper .testimonial-author {
    font-weight: 600;
    color: #333;
}

.fuel-optimization-wrapper .testimonial-company {
    color: #666;
    font-size: 0.9rem;
}

/* ROI Calculator */
.fuel-optimization-wrapper .roi-calculator {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
}

.fuel-optimization-wrapper .calculator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.fuel-optimization-wrapper .calculator-metric {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.fuel-optimization-wrapper .calculator-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fuel-optimization-wrapper .calculator-number.savings {
    color: #3498db;
}

.fuel-optimization-wrapper .calculator-number.months {
    color: #27ae60;
}

.fuel-optimization-wrapper .calculator-number.roi {
    color: var(--primary-color);
}

.fuel-optimization-wrapper .calculator-label {
    color: #666;
    font-weight: 500;
}

.fuel-optimization-wrapper .calculator-cta {
    background: #2C5F5D;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
    transition: background 0.3s ease;
}

.fuel-optimization-wrapper .calculator-cta:hover {
    background: #1e4442;
    text-decoration: none;
    color: white;
}

/* Final CTA */
.fuel-optimization-wrapper .final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2C5F5D 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.fuel-optimization-wrapper .final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.fuel-optimization-wrapper .final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fuel-optimization-wrapper .cta-button {
    background: var(--primary-color);
    /* color: #2C5F5D; */
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.fuel-optimization-wrapper .cta-button:hover {
    background: #3bb3b3;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fuel-optimization-wrapper .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fuel-optimization-wrapper .hero-title {
        font-size: 2.5rem;
    }

    .fuel-optimization-wrapper .section-title {
        font-size: 2rem;
    }

    .fuel-optimization-wrapper .impact-grid,
    .fuel-optimization-wrapper .features-grid,
    .fuel-optimization-wrapper .theft-grid,
    .fuel-optimization-wrapper .optimization-grid,
    .fuel-optimization-wrapper .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .fuel-optimization-wrapper .calculator-grid {
        grid-template-columns: 1fr;
    }

    .fuel-optimization-wrapper .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .fuel-optimization-wrapper .hero-title {
        font-size: 2rem;
    }

    .fuel-optimization-wrapper .final-cta h2 {
        font-size: 2rem;
    }

    .fuel-optimization-wrapper .section-title {
        font-size: 1.8rem;
    }
    .fuel-optimization-wrapper .hero-container{
        background: transparent !important;
    }
}

