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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f1f8e9 100%);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a8a;
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 138, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #2d7a8a;
    border: 2px solid #2d7a8a;
}

.cta-button.secondary:hover {
    background: #2d7a8a;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Concept Section */
.concept {
    padding: 100px 0;
    background: white;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.concept-card {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0f2fe;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.concept-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.concept-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.concept-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 15px;
}

.concept-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 20px;
}

.features-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a5568;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.features-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Habitats Section */
.habitats {
    padding: 100px 0;
    background: white;
}

.habitats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.habitat-card {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0f2fe;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.habitat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.habitat-image {
    height: 200px;
    overflow: hidden;
}

.habitat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.habitat-card:hover .habitat-image img {
    transform: scale(1.05);
}

.habitat-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e5a6b;
    margin: 20px 20px 10px;
}

.habitat-card p {
    color: #4a5568;
    margin: 0 20px 20px;
    line-height: 1.5;
}

/* Mindful Section */
.mindful {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.mindful-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mindful-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mindful-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.mindful-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 20px;
}

.mindful-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mindful-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d7a8a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    border: 2px solid #e0f2fe;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border-color: #ffa726;
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    transform: scale(1.05);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffa726 0%, #ff8f00 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-card.featured .product-icon {
    background: linear-gradient(135deg, #ffa726 0%, #ff8f00 100%);
}

.product-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 10px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a8a;
    margin-bottom: 25px;
}

.product-card.featured .product-price {
    color: #ff8f00;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4fc3f7;
    font-weight: bold;
}

.product-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 138, 0.3);
}

.product-card.featured .product-button {
    background: linear-gradient(135deg, #ffa726 0%, #ff8f00 100%);
}

.product-card.featured .product-button:hover {
    box-shadow: 0 10px 25px rgba(255, 167, 38, 0.3);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f9ff 100%);
    border: 1px solid #e0f2fe;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
    color: white;
}

.author-name {
    font-weight: 600;
    color: #1e5a6b;
    font-size: 1.05rem;
}

.author-title {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e5a6b;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 5px;
}

.contact-text p {
    color: #4a5568;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e5a6b;
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0f2fe;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8fbff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a8a;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2d7a8a 0%, #1e5a6b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 138, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e5a6b 0%, #2d7a8a 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-content,
    .mindful-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mindful-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .logo-container {
        justify-content: center;
        gap: 15px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .mindful-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .concept-grid,
    .products-grid,
    .benefits-grid,
    .testimonials-grid,
    .habitats-grid {
        grid-template-columns: 1fr;
    }
    
    .features,
    .concept,
    .habitats,
    .mindful,
    .products,
    .benefits,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .concept-card,
    .product-card,
    .testimonial-card,
    .contact-form {
        padding: 25px;
    }
    
    .features,
    .concept,
    .habitats,
    .mindful,
    .products,
    .benefits,
    .testimonials,
    .contact {
        padding: 40px 0;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .logo-container {
        gap: 10px;
    }
}