/* Construction Equipment Finance Page Styles */

/* CEF Hero Section */
.cef-hero-section {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 50%, #0a6b73 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cef-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cef-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23cef-grain)"/></svg>');
    pointer-events: none;
}

.cef-hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

/* Hero Content */
.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #17adb8;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    margin-left: 100px;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

/* Equipment Highlights */
.equipment-highlights {
    position: absolute;
    bottom: -60px;
    left: -60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out forwards;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight-card:nth-child(4) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.highlight-card:nth-child(4) .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.highlight-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.card-content h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.card-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: pulse 4s ease-in-out infinite reverse;
}

.decoration-dots {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dots-1 {
    top: 20%;
    left: 10%;
}

.dots-1::before,
.dots-1::after,
.dots-2::before,
.dots-2::after {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: block;
}

.dots-2 {
    bottom: 20%;
    right: 10%;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CEF Overview Section */
.cef-overview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.overview-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(23, 173, 184, 0.3);
}

.overview-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 20px;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Equipment Categories Section */
.equipment-categories-section {
    padding: 100px 0;
    background: white;
}

.equipment-categories-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.section-subheader {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-card li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.category-card li::before {
    content: '•';
    color: #f39c12;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CEF Benefits Section */
.cef-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.cef-benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #17adb8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Eligibility Section */
.eligibility-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #17adb8, #0d8a94);
    border-radius: 2px;
}

.section-subheader {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.eligibility-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #17adb8, #0d8a94);
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.documentation-card {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #17adb8, #0d8a94);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.card-content {
    flex: 1;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.criteria-item i {
    color: #27ae60;
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
}

.criteria-item span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.document-category {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.document-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-category h4 i {
    color: #17adb8;
    font-size: 0.9rem;
}

.document-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-category li {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.document-category li::before {
    content: '•';
    color: #17adb8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Eligibility Notes */
.eligibility-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.note-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #f39c12;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.note-card i {
    color: #f39c12;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.note-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.process-timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    max-width: 250px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background: white;
}

.case-studies-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-study-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.case-study-meta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.case-study-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 20px;
}

.result {
    text-align: center;
}

.result-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    display: block;
}

.result-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cef-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    color: #f39c12;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ecf0f1;
}

.feature i {
    color: #f39c12;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Custom Footer for CEF Page */
.cef-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0 20px;
}

.cef-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.cef-footer .footer-section h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cef-footer .footer-section h3 i {
    color: #f39c12;
}

.cef-footer .footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cef-footer .footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.cef-footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cef-footer .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cef-footer .social-icons a:hover {
    background: #f39c12;
    transform: translateY(-3px);
}

.cef-footer ul {
    list-style: none;
    padding: 0;
}

.cef-footer li {
    margin-bottom: 10px;
}

.cef-footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cef-footer a:hover {
    color: #f39c12;
}

.cef-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.cef-footer .contact-item i {
    color: #f39c12;
    font-size: 1.1rem;
    margin-top: 3px;
}

.cef-footer .contact-item span {
    opacity: 0.9;
    line-height: 1.5;
}

.cef-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.cef-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cef-footer .footer-bottom p {
    opacity: 0.8;
    margin: 0;
}

.cef-footer .footer-links {
    display: flex;
    gap: 20px;
}

.cef-footer .footer-links a {
    opacity: 0.8;
    font-size: 0.9rem;
}

.cef-footer .footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cef-hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .cef-hero-section .container,
    .overview-content,
    .eligibility-content,
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Eligibility Section Responsive */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .eligibility-card {
        padding: 20px;
    }

    .card-header {
        margin-bottom: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .document-category {
        padding: 15px;
    }

    .eligibility-notes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .note-card {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
        min-height: 56px;
    }

    .hero-visual {
        order: -1;
    }

    .service-highlights {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        gap: 15px;
        flex-wrap: wrap;
    }

    .highlight-card {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
        padding: 18px;
        transition: all 0.3s ease;
    }

    .highlight-card:hover {
        transform: translateY(-5px);
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .card-content h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .hero-image-container {
        width: 320px;
        height: 320px;
        transform: none;
        margin: 0 auto;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .cef-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cef-footer .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step::before {
        display: none;
    }

    .case-results {
        flex-direction: column;
        gap: 10px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .cef-hero-section .container {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .service-highlights {
        left: -40px;
        bottom: -40px;
    }

    .highlight-card {
        padding: 18px;
    }

    .hero-image-container {
        width: 400px;
        height: 400px;
        margin-left: 50px;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .cef-hero-section {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 16px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-btn {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 52px;
    }

    .service-highlights {
        gap: 12px;
        margin-top: 25px;
        padding: 0 15px;
    }

    .highlight-card {
        min-width: 160px;
        max-width: 240px;
        padding: 16px;
        border-radius: 12px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .card-content h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    /* Disable hover effects on small mobile for better touch experience */
    .highlight-card:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-content h2 {
    font-size: 2.5rem;
    color: #17adb8;
    margin-bottom: 15px;
    font-weight: 700;
}

.calculator-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #17adb8;
}

.calculate-btn {
    background: linear-gradient(135deg, #17adb8 0%, #0d8a94 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 173, 184, 0.3);
}

.calculator-results {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-card {
    text-align: center;
    margin-bottom: 30px;
}

.result-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.emi-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #17adb8;
}

.result-details {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.detail-item {
    text-align: center;
    flex: 1;
}

.detail-item span:first-child {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-item span:last-child {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


