@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }
    h4 { font-size: 1rem; }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .counter-grid {
        gap: 20px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}/* Homykic Official Website Styles */

/* CSS Variables */
:root {
    --primary-color: #8B6F47;  /* Warm brown */
    --secondary-color: #D2B48C; /* Tan/beige */
    --accent-color: #CD853F;    /* Peru/terracotta */
    --dark-color: #3E2723;      /* Dark brown */
    --light-color: #FFF8DC;     /* Cornsilk */
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-large: 16px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

p, span, li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    word-wrap: break-word;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-product {
    background-color: var(--accent-color);
    color: var(--white);
    width: 100%;
    margin-top: 15px;
}

.btn-product:hover {
    background-color: var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--light-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Hero Section */
.hero {
    padding-top: 30px;
    background-color: var(--light-color);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
}

.hero-title {
    color: var(--dark-color);
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    white-space: nowrap;
}

.stat i {
    color: var(--accent-color);
}

.social-proof {
    margin-top: 20px;
}

.live-notification {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: slideIn 0.5s ease;
    font-size: 0.9rem;
    max-width: 100%;
}

.live-notification span {
    white-space: normal;
    word-wrap: break-word;
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-hover);
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
}

/* Counters Section */
.counters {
    background-color: var(--primary-color);
    padding: 40px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    justify-content: center;
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.counter-content {
    display: flex;
    flex-direction: column;
}

.counter-value {
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.9;
    white-space: normal;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .counter-item {
        justify-content: center;
    }
}

/* Products Section */
.products {
    background-color: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--light-color);
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.new {
    background-color: var(--success);
}

.product-card img {
    width: 100%;
    height: 366px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.3;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    flex: 1;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features i {
    color: var(--success);
    font-size: 0.8rem;
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stock-indicator.in-stock {
    color: var(--success);
}

.stock-indicator.low-stock {
    color: var(--warning);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Categories Section */
.categories-section {
    background-color: var(--light-color);
    padding: 60px;
    border-radius: var(--radius-large);
    text-align: center;
}

.categories-title {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--text-color);
}

.category-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--primary-color);
}

.category-link i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Quiz Section */
.quiz-section {
    background-color: var(--light-color);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.quiz-progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

.progress-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.quiz-question {
    margin-bottom: 30px;
}

.quiz-question h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.quiz-options {
    display: grid;
    gap: 15px;
}

.quiz-option {
    padding: 20px;
    background-color: var(--light-color);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.quiz-option:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.quiz-option.selected {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.recommended-products {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.recommended-product {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--radius);
}

.recommended-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Calculator Section */
.calculator-section {
    background-color: var(--white);
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.calculator-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--radius-large);
    text-align: center;
}

.calculator-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.calculator-card i {
    color: var(--primary-color);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.calculator-inputs label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    font-weight: 500;
}

.calculator-inputs input,
.calculator-inputs select {
    padding: 12px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.calculator-inputs input:focus,
.calculator-inputs select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calculator-result {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.result-subtext {
    color: var(--text-light);
    font-style: italic;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: auto;
    display: block;
}

.about-stats {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: var(--radius-large);
    display: flex;
    gap: 40px;
    box-shadow: var(--shadow-hover);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.achievements {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-color);
    border-radius: var(--radius);
}

.achievement-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}

/* Timeline Sections */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-item p {
    color: var(--text-light);
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-item p {
    color: var(--text-light);
}

/* Problems Section */
.problems {
    background-color: #FFF5F5;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.problem-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    border: 2px solid #FFE0E0;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #FFE0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon i {
    font-size: 2rem;
    color: var(--danger);
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.problem-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.problem-cost {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--danger);
}

.solution-cta {
    text-align: center;
}

.solution-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Comparison Table */
.comparison {
    background-color: var(--white);
    padding: 80px 0;
}

.comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
}

.comparison-table tr td:first-child {
    background-color: var(--light-color);
    position: sticky;
    left: 0;
    z-index: 1;
}

.comparison-table th {
    background-color: var(--dark-color);
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.comparison-table th.highlight {
    background-color: var(--primary-color);
    font-size: 1.1rem;
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table td.highlight {
    background-color: var(--light-color);
    font-weight: 600;
}

.comparison-table i.fa-check {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-table i.fa-times {
    color: var(--danger);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .comparison-table {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    
    .comparison-table table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
}

/* Guarantees Section */
.guarantees {
    background-color: var(--light-color);
    padding: 80px 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

.guarantee-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.guarantee-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.guarantee-card p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--radius-large);
    position: relative;
    min-height: 200px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary-color);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header div {
    flex: 1;
}

.testimonial-header h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: #FFB400;
    margin-bottom: 5px;
}

.verified {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 500;
}

.testimonial-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Roadmap Section */
.roadmap {
    background-color: var(--light-color);
    padding: 80px 0;
    overflow: hidden;
}

.timeline {
    position: relative;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background-color: var(--secondary-color);
    top: 40px;
}

.timeline-item {
    position: relative;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.current::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(139, 111, 71, 0.2);
}

.timeline-item.future::before {
    background-color: var(--light-color);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-year {
    top: auto;
    bottom: 20px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 60px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

/* Mission Section */
.mission {
    background-color: var(--white);
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--radius-large);
}

.mission-statement h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-statement p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 20px;
    }
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
    padding: 80px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 12px 30px;
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.faq-category:hover {
    border-color: var(--primary-color);
}

.faq-category.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
    gap: 20px;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
    flex: 1;
    text-align: left;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* SEO Section */
.seo-section {
    background-color: var(--white);
    padding: 60px 0;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 20px;
}

.seo-content h3 {
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.seo-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: justify;
}

.seo-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.seo-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.seo-content strong {
    color: var(--text-color);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.badge i {
    font-size: 1.5rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 20px;
    }
    
    .trust-badges {
        gap: 30px;
    }
    
    .badge {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo .logo-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-logo p {
    opacity: 0.8;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    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: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .timeline-content {
        width: 42%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        margin-bottom: 30px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title,
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .products-grid,
    .benefits-grid,
    .guarantees-grid,
    .testimonials-grid,
    .timeline-grid,
    .steps-grid,
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 60px;
        transform: none;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-link {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .category-link i {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }
    h4 { font-size: 1rem; }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .counter-grid {
        gap: 20px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}