/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    position: relative;
}

.section-title span {
    color: #c0392b;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #c0392b;
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-top: -35px;
    margin-bottom: 50px;
    font-size: 18px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a2e;
    color: #ddd;
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar i {
    margin-right: 6px;
    color: #c0392b;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links a:hover {
    color: #fff;
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 24px;
    color: #c0392b;
}

.logo i {
    color: #c0392b;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c0392b;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c0392b;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    align-items: center;
}

.header-icons a {
    position: relative;
    transition: color 0.3s;
}

.header-icons a:hover {
    color: #c0392b;
}

.cart-count {
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: -12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #1a1a2e, #2c3e50);
    color: #fff;
    text-align: center;
}

.page-banner h1 {
    font-size: 48px;
}

.page-banner h1 span {
    color: #c0392b;
}

.page-banner p {
    margin-top: 10px;
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #c0392b;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(192,57,43,0.3);
}

.experience-badge span {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.about-text h2 span {
    color: #c0392b;
}

.about-text .subtitle {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-5px);
}

.stat-item i {
    display: block;
    font-size: 24px;
    color: #c0392b;
    margin-bottom: 5px;
}

.stat-item:hover i {
    color: #fff;
}

.stat-item span {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.stat-item:last-child i {
    color: #f39c12;
}

.btn-primary {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #a93226;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192,57,43,0.3);
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 80px 0;
    background: #fafafa;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #c0392b;
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #c0392b;
    transition: all 0.3s;
}

.mission-card:hover .mission-icon {
    background: #c0392b;
    color: #fff;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #555;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    padding: 80px 0;
    background: #fff;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-card {
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #c0392b;
}

.choose-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #c0392b;
}

.choose-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.choose-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f2, #f8e8e8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h4 {
    font-size: 20px;
    margin-top: 20px;
}

.team-card p {
    color: #888;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 25px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #555;
}

.team-social a:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== TIMELINE ===== */
.timeline-section {
    padding: 80px 0;
    background: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #c0392b;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 60px;
    margin-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #c0392b;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #c0392b;
    z-index: 1;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

.timeline-date {
    font-weight: 700;
    color: #c0392b;
    font-size: 20px;
    margin-bottom: 5px;
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: #c0392b;
    box-shadow: 0 10px 30px rgba(192,57,43,0.1);
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: #fafafa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.testimonial-card .stars {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.customer h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.customer span {
    font-size: 13px;
    color: #999;
}

/* ===== PARTNERS ===== */
.partners {
    padding: 60px 0;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    font-size: 16px;
    border: 1px solid #f0f0f0;
}

.partner-logo:hover {
    background: #c0392b;
    color: #fff;
    transform: scale(1.05);
    border-color: #c0392b;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 14px 30px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2c3e50;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a2e;
    color: #ddd;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c0392b;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 14px;
    color: #777;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

.payment-icons i {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.payment-icons i:hover {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    .experience-badge span {
        font-size: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .top-links {
        display: none;
    }
    .top-bar .container {
        justify-content: center;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }

    .timeline-item:nth-child(odd)::before,
    .timeline-item:nth-child(even)::before {
        left: 20px;
        right: auto;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .about-image img {
        height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item span {
        font-size: 18px;
    }

    .experience-badge {
        display: none;
    }
}