:root {
    --subaru-blue: #0058A3;
    --subaru-dark-blue: #003d71;
    --subaru-light-blue: #00ADEF;
    --subaru-gray: #2C2C2C;
    --subaru-light-gray: #F5F5F5;
    --subaru-yellow: #FFD100;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--subaru-gray);
    overflow-x: hidden;
}
/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}
.navbar-brand img {
    height: 45px;
}
.navbar-nav .nav-link {
    color: var(--subaru-gray);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--subaru-blue);
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 760px;
        background: url(images/1.jpg) no-repeat center center;
	background-size: cover;
    align-items: center;
    color: white;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.hero-accent {
    color: var(--subaru-yellow);
}
.btn-primary-custom {
    background-color: var(--subaru-yellow);
    color: var(--subaru-gray);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary-custom:hover {
    background-color: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 209, 0, 0.3);
}
.btn-secondary-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-secondary-custom:hover {
    background-color: white;
    color: var(--subaru-blue);
}
/* Offer Details Section */
.offer-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--subaru-light-gray) 100%);
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--subaru-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}
.price-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.price-card:hover {
    transform: translateY(-10px);
}
.price-label {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}
.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--subaru-blue);
    margin-bottom: 0.5rem;
}
.price-currency {
    font-size: 2rem;
}
.price-period {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.feature-item {
    padding: 1rem;
    margin: 0.5rem 0;
    background: var(--subaru-light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.feature-item:hover {
    background: var(--subaru-light-blue);
    color: white;
    transform: translateX(10px);
}
.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--subaru-blue);
}
.feature-item:hover i {
    color: white;
}
.highlight-box {
    background: var(--subaru-blue);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}
.highlight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
/* Contact Form Section */
.contact-section {
    padding: 6rem 0;
    background: var(--subaru-gray);
    color: white;
}
.form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.form-card h3 {
    color: var(--subaru-blue);
    margin-bottom: 2rem;
}
.form-label {
    color: var(--subaru-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-control, .form-select {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: var(--subaru-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 88, 163, 0.25);
}
.btn-submit {
    background-color: var(--subaru-blue);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}
.btn-submit:hover {
    background-color: var(--subaru-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 88, 163, 0.3);
}
.contact-info {
    color: white;
}
.contact-info h3 {
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}
.contact-item i {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: var(--subaru-yellow);
}
/* Terms Section */
.terms-section {
    padding: 4rem 0;
    background: var(--subaru-light-gray);
}
.terms-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.terms-content h4 {
    color: var(--subaru-blue);
    margin-bottom: 1.5rem;
}
.terms-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}
/* Footer */
.footer {
    background-color: var(--subaru-gray);
    color: white;
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a {
    color: white;
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}
.social-links a:hover {
    color: var(--subaru-yellow);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #999;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .price-amount {
        font-size: 3rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .social-links {
        margin-top: 1.5rem;
    }
	.hero-section {
   
    background-image: url("images/1.jpg"); center/cover no-repeat;
         zoom: 0.23 !important;
}
}