@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

:root {
    --blue-dark: #002a42;
    --blue: #00496f;
    --orange: #f36b21;
    --orange-dark: #d95712;
    --green: #25d366;
    /* WhatsApp green */
    --green-dark: #128c7e;
    --text-main: #222;
    --text-light: #fff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.5;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    min-height: 600px;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay to improve text readability */
    z-index: 1;
}

.container {
    max-width: 1440px;
    /* As per previous context/standard */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--orange-dark);
}

.btn-whatsapp {
    background-color: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: var(--green-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }
}

/* Why Partner Section */
.why-partner {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background-color: var(--orange);
    color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 2.8em;
    /* Force 2 lines height for alignment */
}

.why-card p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.video-proof {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.video-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-transform: uppercase;
}

.video-container {
    max-width: 100%;
    /* Full width of container */
    margin: 0 auto;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/video-cover.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.video-cover::after {
    content: "";
    width: 68px;
    height: 48px;
    background-color: rgba(33, 33, 33, 0.8);
    border-radius: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    transition: background-color 0.2s ease;
}

.video-cover:hover::after {
    background-color: #f00;
}

.video-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Product Advantages Section */
.product-advantages {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.featured-box {
    background-color: var(--orange);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(243, 107, 33, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.featured-box h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-box p {
    font-size: 18px;
    opacity: 0.9;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.advantage-item {
    padding: 20px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--orange);
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

.advantage-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .featured-box h3 {
        font-size: 24px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantage-item {
        text-align: center;
    }

    .advantage-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Challenges & Solutions Section */
.challenges-solutions {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.cs-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: -30px auto 60px;
    opacity: 0.8;
    line-height: 1.5;
}

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

.cs-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.challenge-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-bottom: 30px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.challenge-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.challenge-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cs-arrow {
    color: var(--orange);
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.solution-item {
    text-align: center;
    width: 100%;
}

.solution-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--orange);
}

.solution-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.solution-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cs-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cs-subtitle {
        margin-bottom: 40px;
    }
}

/* Success Stories Section */
/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: var(--blue-dark);
    color: var(--text-light);
    text-align: center;
}

.success-stories .section-title {
    color: var(--text-light);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Increased gap */
}

.story-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.story-image {
    width: 100%;
    border-radius: 16px;
    /* More rounded */
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Add shadow */
}

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

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

.story-quote {
    font-family: "Times New Roman", Times, serif;
    /* Serif font for quote */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-style: italic;
    min-height: 80px;
    letter-spacing: 0.5px;
}

.story-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    /* Push to bottom if needed */
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ccc;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info p {
    font-size: 14px;
    color: #ccc;
    /* Lighter grey */
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison Table Section */
.comparison-table-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.comparison-table-section .section-title {
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.comparison-table-section .cs-subtitle {
    margin-bottom: 50px;
}

.comparison-table {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.comp-header-item {
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-header-item:first-child {
    background-color: var(--blue-dark);
    justify-content: flex-start;
    padding-left: 40px;
}

.comp-header-item:nth-child(2) {
    background-color: var(--orange);
}

.comp-header-item:nth-child(3) {
    background-color: #666;
}

.comp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #eee;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:nth-child(even) {
    background-color: #f8f8f8;
}

.comp-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
}

.comp-cell:first-child {
    justify-content: flex-start;
    padding-left: 40px;
    font-weight: 700;
    gap: 15px;
}

.comp-icon-check {
    width: 32px;
    height: 32px;
    background-color: var(--orange);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-icon-x {
    width: 32px;
    height: 32px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-dark);
}

@media (max-width: 768px) {

    .comp-header,
    .comp-row {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .comp-header-item,
    .comp-cell {
        font-size: 14px;
        padding: 15px 5px;
    }

    .comp-header-item:first-child,
    .comp-cell:first-child {
        padding-left: 15px;
        transition: transform 0.3s ease;
    }

    .comp-feature-icon {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.faq-section .section-title {
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.faq-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
    text-align: left;
}

.faq-question {
    padding: 20px 30px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question.active {
    color: var(--orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
    opacity: 0;
}

.faq-answer.open {
    padding: 0 30px 20px 30px;
    opacity: 1;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0 40px;
    background-color: var(--blue-dark);
    color: #fff;
    text-align: center;
}

.contact-cta-section .section-title {
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: var(--text-main);
    font-family: var(--font-body);
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    border-color: var(--orange);
    outline: none;
}

.cta-button {
    width: 100%;
    background-color: var(--orange);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #e65c00;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--orange);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .site-footer {
        flex-direction: column;
        gap: 20px;
    }
}