@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

:root {
    --primary-green: #0b7027;
    --primary-red: #e3000f;
    --primary-yellow: #f1b306;
    --dark-green: #004b19;
    --light-bg: #fef8eb;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Topbar */
.topbar {
    background-color: var(--primary-green);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--primary-yellow);
}

.topbar-right a {
    color: var(--white);
    margin-left: 10px;
    transition: color 0.3s ease;
}

.topbar-right a:hover {
    color: var(--primary-yellow);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo img {
    height: 110px;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-red);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    width: 100%;
    line-height: 0;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Features Ribbon */
.features-ribbon {
    background-color: var(--light-bg);
    padding: 30px 0;
}

.features-ribbon .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #d1e2d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-green);
}

.feature-box:nth-child(2) .feature-icon {
    background-color: #fad1d4;
    color: var(--primary-red);
}

.feature-box h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.section-title {
    margin-bottom: 40px;
}

.section-title .subtitle {
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-green);
    margin-top: 5px;
}

.section-title h2 span {
    color: var(--primary-red);
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.product-card {
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.product-img {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
}

.btn-green {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-green:hover {
    background-color: var(--dark-green);
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: #e0a500;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: #cc000d;
}

/* Full Width Sections */
.full-image-section {
    width: 100%;
    line-height: 0;
}

.full-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Testimonials */
.testimonials-section {
    padding: 70px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 15px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    position: relative;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.customer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-details h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.customer-details span {
    font-size: 12px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-green);
    padding: 50px 0;
    color: var(--white);
    border-top-left-radius: 100px;
    border-top-right-radius: 10px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.newsletter-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 15px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    background: var(--white);
    padding: 10px;
    border-radius: 10px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--primary-yellow);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--primary-yellow);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--dark-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    margin-left: 15px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    color: var(--dark-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 99;
    transition: transform 0.3s;
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
}

/* Enquiry Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #cc000d;
}

/* The Popular Promise Section */
.premium-promise-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fef8eb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.promise-header {
    text-align: center;
    margin-bottom: 50px;
}

.promise-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.promise-header h2 span {
    color: var(--primary-red);
}

.promise-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.promise-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.promise-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 112, 39, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(11, 112, 39, 0.08);
}

.promise-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(11, 112, 39, 0.2);
}

.promise-card:nth-child(2) .promise-icon {
    background: var(--primary-yellow);
    color: var(--dark-green);
    box-shadow: 0 5px 15px rgba(241, 179, 6, 0.3);
}

.promise-card:nth-child(3) .promise-icon {
    background: var(--primary-red);
    box-shadow: 0 5px 15px rgba(227, 0, 15, 0.2);
}

.promise-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.promise-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Brand Experience Sections (Images 1 and 2) */
.brand-experience-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.experience-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.experience-section .image-wrapper {
    width: 100%;
}

.experience-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.shadow-effect {
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

/* Avatar SVG */
.avatar-svg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
}

.avatar-svg svg {
    width: 100%;
    height: 100%;
}

/* Animated About Section */
.about-vision-section {
    position: relative;
    padding: 90px 0 180px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 50%, #fff9eb 100%);
    overflow: hidden;
    z-index: 5;
}

.about-container {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.about-header h2 span {
    color: var(--primary-red);
}

.about-header p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.mission-vision-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(241, 179, 6, 0.2);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 112, 39, 0.12);
}

.mv-icon {
    width: 65px;
    height: 65px;
    background: rgba(11, 112, 39, 0.08);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Animated Golden Oil Drop */
.animated-oil-drop {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    margin: 0 auto 35px;
    position: relative;
    animation: floatDrop 3s ease-in-out infinite;
    box-shadow: -5px 5px 15px rgba(255, 140, 0, 0.4);
}

@keyframes floatDrop {
    0%, 100% { transform: rotate(45deg) translate(0, 0) scale(1); }
    50% { transform: rotate(45deg) translate(-6px, -6px) scale(1.05); box-shadow: -10px 10px 25px rgba(255, 140, 0, 0.5); }
}

/* Oil Waves Background */
.oil-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: -7px;
    min-height: 150px;
    max-height: 250px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .topbar-left {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }
    
    .newsletter-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-section {
        border-top-left-radius: 50px;
    }
}
