/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafafa;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8787 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.header-nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s;
    opacity: 0.9;
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    background-color: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    padding: 0.875rem 1.875rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #ea580c;
    color: #ea580c;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Containers */
.container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 50%, #feebc8 100%);
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: #7c2d12;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image img {
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.4);
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 3px solid #ffffff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #78350f;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border: 2px solid #fed7aa;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 30px -5px rgba(245, 158, 11, 0.3);
    border-color: #fb923c;
    transform: translateY(-8px) scale(1.02);
}

.product-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c2410c;
}

.product-description {
    color: #92400e;
}

/* Tips Section */
.tips-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border: 2px solid #fb923c;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(251, 146, 60, 0.2);
    transition: all 0.3s;
}

.tip-card:hover {
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.35);
    border-color: #ea580c;
    transform: translateY(-8px) rotate(-1deg);
}

.tip-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b6b 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.tip-icon .icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.tip-image {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 3px solid #fed7aa;
    filter: saturate(1.15);
}

.tip-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 1rem;
}

.tip-description {
    color: #92400e;
    line-height: 1.75;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border: 2px solid #fed7aa;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
    border-color: #fb923c;
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c2410c;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 1rem;
    color: #92400e;
    line-height: 1.75;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 50%, #feebc8 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border: 2px solid #fb923c;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.2);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #fed7aa;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background-color: #fffbeb;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
    background-color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    border: 2px solid #fb923c;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.2);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #ff6b6b;
    flex-shrink: 0;
}

.contact-info-label {
    font-weight: 600;
    color: #c2410c;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #92400e;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #c2410c 100%);
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    color: #fed7aa;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #fed7aa;
    opacity: 0.9;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #fde68a;
    transition: all 0.2s;
    opacity: 0.85;
}

.footer-link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(254, 215, 170, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #fde68a;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .header-nav {
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}
