/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Alternating Section Colors */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

section:nth-child(odd) {
    background-color: #ffffff;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    background-image: url('images/hunza-oil-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.hero-section .row.hero-content {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}

.hero-section .col-lg-6.order-lg-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding-right: 40px;
    flex: 1 1 0;
    min-height: 420px;
}

.hero-section .col-lg-6.order-lg-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-height: 420px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-image {
    
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height:300px
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-section .row.hero-content {
        flex-direction: column-reverse;
        min-height: unset;
    }
    .hero-section .col-lg-6.order-lg-1,
    .hero-section .col-lg-6.order-lg-2 {
        min-height: unset;
        padding-right: 0;
        text-align: center;
    }
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.problems-section .row {
    gap: 30px;
    justify-content: center;
}
.col-md-4 {
    margin-bottom: 30px;
}
.problem-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 0;
    height: 100%;
}

.problem-card i,
.problem-card img {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.problem-card p {
    color: #666;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.benefit-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-box i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-box h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.benefit-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.reviewer-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

#load-more-reviews {
    padding: 12px 30px;
    font-weight: 600;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

#load-more-reviews:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Bundles Section */
.bundles-section {
    padding: 80px 0;
}

.bundle-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid transparent;
    cursor: pointer;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-card.active {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bundle-card.popular {
    border: 2px solid var(--secondary-color);
}

.bundle-card.popular.active {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.bundle-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bundle-card ul li {
    margin-bottom: 10px;
}

.bundle-card .btn {
    display: inline-block;
    margin-top: 20px;
}

.bundle-card:focus {
    outline: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bundle-card:active {
    transform: translateY(0);
}

/* Section Headings */
section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.order-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.order-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

.order-form button[type="submit"] {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    display: block;
    padding: 15px 40px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .bundle-card {
        margin-bottom: 30px;
    }
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-section .lead {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.story-content {
    color: #666;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 20px;
}

.story-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }
    
    .story-section h2 {
        font-size: 2rem;
    }
    
    .story-section .lead {
        font-size: 1.1rem;
    }
    
    .story-image {
        margin-bottom: 30px;
    }
}

/* Product Details Section */
.product-details-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.product-details-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.product-info-box, .usage-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.product-info-box h3, .usage-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.product-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details-list li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.product-details-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.usage-steps {
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.step p {
    margin: 0;
    color: #666;
}

.usage-tips {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.usage-tips h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.usage-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-tips ul li {
    margin-bottom: 10px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.usage-tips ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .product-info-box, .usage-info-box {
        margin-bottom: 30px;
    }
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.trust-item p {
    color: #666;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background-color: #ffffff;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    background-color: white;
    padding: 20px;
}

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

.accordion-body {
    padding: 20px;
    color: #666;
}

/* Money-Back Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.guarantee-icon-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guarantee-icon {
    font-size: 4rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.guarantee-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.guarantee-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-section .lead {
    color: #666;
    margin-bottom: 30px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-list li {
    margin-bottom: 15px;
    color: #666;
    display: flex;
    align-items: center;
}

.guarantee-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .trust-item, .stat-item {
        margin-bottom: 30px;
    }
    
    .guarantee-badge {
        margin-bottom: 30px;
    }
} 