/* Custom CSS for Insuron Luxury Car Insurance Page Using Your Variables */

/* Global Styles */
:root {
    --heading-font: "Vidaloka", serif;
    --body-font: "Jost", sans-serif;
    --poppins-font: "Poppins", sans-serif;
    --plusjakarta-font: "Plus Jakarta Sans", sans-serif;
    --inter-font: "Inter", sans-serif;
    --dmsans-font: "DM Sans", sans-serif;
    --main-gradient: linear-gradient(90deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
    --main-gradient-rev: linear-gradient(270deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
    --primary: #F05A22;
    --primary-dark: #D14A1A;
    --secondary: #1C2D37;
    --gray-900: #181616;
    --gray-800: #777;
    --gray-700: #211E1E;
    --gray-200: #E0E0E0;
    --gray-100: #F8F8F8;
    --light: #f8fafc;
    --dark: #1e293b;
    --accent: #D6A643;
}

body {
    font-family: var(--body-font);
    color: var(--gray-700);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--gray-900);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--main-gradient);
    margin: 15px auto;
    border-radius: 2px;
}

/* Header Styles */

/* Hero Section */
.hero-section {
    background: #1C2D37;
    color: white;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-primary {
    background: var(--secondary);
    border: none;
}

.btn-primary:hover {
    background: #14222a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    border: 2px solid #D6A643 !important;
    background-color: #D6A643 !important;
}

.btn-outline-light:hover {
    border: 2px solid white !important;
    background: white;
    color: var(--primary);
}

.hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(240, 90, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: white;
}

.plan-card {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(240, 90, 34, 0.2);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.plan-header {
    padding: 30px;
    background: var(--gray-100);
    text-align: center;
}

.plan-header h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--primary);
    margin-right: 10px;
}

.plan-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.plan-footer .btn {
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white !important;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--main-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--accent);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    background: white;
    color: var(--primary) !important;
}

.cta-content .btn:hover {
    background: var(--secondary);
    color: white !important;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer ul li i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .step {
        flex: 0 0 calc(50% - 30px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
}

/* Testimonicals------- */
.testimonials {
  background-color: var(--h9-grey-bg);
}

.text-gradient {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
}

.testimonial-text {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--h9-paragraph-color);
  line-height: 1.6;
}

/* form error message */

.error-msg {
  color: #ff4d4d;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

/* video section */

 