/* style.css - iDeoura Oil */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A017;
    --secondary-color: #2E7D32;
    --light-color: #FFF9E6;
    --dark-color: #1E3A1E;
    --text-color: #333333;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray: #666666;
    --gray-dark: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b88b15;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 50px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    gap: 40px;
}

.header__menu-link {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
}

.header__menu-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header__menu-link:hover:after,
.header__menu-link--active:after {
    width: 100%;
}

.header__menu-link--active,
.header__menu-link:hover {
    color: var(--primary-color);
}

.header__cta {
    flex-shrink: 0;
}

.header__cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header__cta-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.header__toggle-icon {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    z-index: 999;
    transition: right 0.3s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav__link {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 1px solid #eee;
}

.mobile-nav__link--active,
.mobile-nav__link:hover {
    color: var(--primary-color);
}

.mobile-nav__cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.mobile-nav__cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    margin-top: 80px;
    height: 600px;
    overflow: hidden;
}

.hero-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slider__slide.active {
    opacity: 1;
}

.hero-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 58, 30, 0.9), rgba(212, 160, 23, 0.3));
}

.hero-slider__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 100px;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slider__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slider__quote {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    font-style: italic;
}

.hero-slider__button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-slider__button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-slider__controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-slider__arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider__arrow:hover {
    background-color: var(--primary-color);
}

.hero-slider__dots {
    display: flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider__dot.active,
.hero-slider__dot:hover {
    background-color: var(--primary-color);
}

/* Section Common Styles */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading__title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-heading__line {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.section-heading__subtitle {
    color: var(--gray);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-section__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-section__image-col,
.about-section__text-col {
    flex: 1;
}

.about-section__image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-section__image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-section__image-wrapper:hover .about-section__image {
    transform: scale(1.05);
}

.about-section__name {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.about-section__description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.about-section__button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.about-section__button:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.features-section__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.features-section__box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.features-section__box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-section__icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 160, 23, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
}

.features-section__title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.features-section__text {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
}

.cta-section__content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-section__text {
    flex: 1;
}

.cta-section__heading {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.cta-section__description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-section__button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section__button:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

.cta-section__images {
    flex: 1;
    position: relative;
}

.cta-section__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cta-section__image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-section__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-section__image-wrapper:hover .cta-section__image {
    transform: scale(1.05);
}

.cta-section__badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

.cta-section__wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cta-section__wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Testimonials Section */
.testimonials-revised {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider__container {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-slide__content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-slide__quote {
    position: absolute;
    top: 30px;
    left: 30px;
    color: rgba(212, 160, 23, 0.2);
    font-size: 2rem;
}

.testimonial-slide__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 30px;
    padding-left: 20px;
}

.testimonial-slide__author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-slide__image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slide__name {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-slide__location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testimonial-slide__rating {
    color: var(--primary-color);
}

.testimonials-slider__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonials-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-slider__dot.active,
.testimonials-slider__dot:hover {
    background-color: var(--primary-color);
}

/* Footer */
.footer-section__top {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0;
}

.footer-section__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section__heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section__heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section__desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-section__social {
    display: flex;
    gap: 15px;
}

.footer-section__social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-section__social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section__links li {
    margin-bottom: 12px;
}

.footer-section__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section__shop-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-section__shop-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-section__contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section__contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-section__bottom {
    background-color: #1a331a;
    color: rgba(255, 255, 255, 0.7);
    padding: 25px 0;
    text-align: center;
}

.footer-section__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section__copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider__content {
        padding: 0 50px;
    }
    
    .hero-slider__title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .header__cta {
        display: none;
    }
    
    .header__toggle {
        display: flex;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-slider__content {
        padding: 0 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero-slider__title {
        font-size: 2.5rem;
    }
    
    .hero-slider__quote {
        font-size: 1.1rem;
    }
    
    .about-section__content,
    .cta-section__content {
        flex-direction: column;
    }
    
    .section-heading__title {
        font-size: 2rem;
    }
    
    .features-section__row {
        grid-template-columns: 1fr;
    }
    
    .footer-section__copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .hero-slider__title {
        font-size: 2rem;
    }
    
    .hero-slider__button,
    .about-section__button,
    .cta-section__button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .testimonial-slide__content {
        padding: 30px 20px;
    }
}