/* styles.css */

/* Root Variables [Variables-01] */
/* Define primary, secondary, and CTA hover colors for easy theme adjustments */
:root {
    --primary-color: #0355a8; /* Main brand color */
    --secondary-color: #305738; /* Secondary supportive color */
    --cta-hover-color: #0577D0; /* Hover state for CTAs */
}

/* Base Styles [Base-01] */
/* General body styling for font, margin, and background */
body {
    font-family: 'Open Sans', sans-serif; /* Readable sans-serif font for body text */
    margin: 0;
    padding: 0;
    color: #333; /* Base text color */
    background-color: #f0f0f0; /* Light background color for better contrast */
}

/* Heading Styles [Headings-01] */
/* Consistent styling for all heading elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Modern sans-serif font for headings */
}

/* Container Styling [Container-01] */
/* Set a max width and centering for content containers */
.container {
    max-width: 1200px;
    margin: 0 auto; /* Center horizontally */
    padding: 0 20px; /* Add padding for consistent spacing */
}

/* Header Section [Header-02] */
/* Styling for the header, including logo and navigation */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 5px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    width: 100%;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
}

.logo {
    height: 16px;
    width: auto;
}

.contact-info {
    text-align: right;
    font-size: 0.8rem;
    color: #333;
}

.address {
    margin-bottom: 2px;
}

.phone-website {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
}

.separator {
    color: #999;
}

.phone-website a {
    color: #0355a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-website a:hover {
    color: #305738;
}

@media (max-width: 768px) {
    header {
        padding: 8px 15px;
    }
    
    nav {
        padding: 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info {
        text-align: right;
        font-size: 0.75rem;
    }

    .address {
        display: none;
    }

    .phone-website {
        justify-content: flex-end;
    }
}

@media (max-width: 428px) {
    header {
        padding: 8px 12px;
    }

    nav {
        padding: 0;
    }

    .logo {
        height: 14px;
    }

    .contact-info {
        font-size: 0.7rem;
    }

    .phone-website {
        gap: 0.35rem;
    }

    .separator {
        display: none;
    }
}

/* Logo Container [Logo-01] */
/* Styling for logo and alignment */
.logo-container, .header-right {
    display: flex;
    align-items: center;
}

/* Link Styling [Link-01] */
/* Styling for external links */

/* Hero Section [Hero-02] */
/* Styling for the hero section with video background */
.hero {
    position: relative;
    min-height: 336px;
    max-height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 2rem;
    background: 
        linear-gradient(120deg, rgba(3, 85, 168, 0.05), transparent),
        linear-gradient(240deg, rgba(48, 87, 56, 0.05), transparent),
        linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(240,240,240,0.08));
    margin-top: 0;
    box-sizing: border-box;
}

.hero::before {
    content: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0,0,0,0.1), 
        transparent
    );
}

.hero-container {
    position: relative;
    width: 75%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
    border: none;
    transform: none;
    transition: transform 0.3s ease;
}

.hero-container:hover {
    transform: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.1) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.5)
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;  
    margin-top: -2rem;  
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 40px auto -0.5rem;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    overflow: hidden;
}

.hero-logo::after {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 150%;
    height: 150%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(35deg);
    animation: sheen 3s infinite;
}

@keyframes sheen {
    0% {
        transform: rotate(35deg) translateX(-150%);
    }
    20%, 100% {
        transform: rotate(35deg) translateX(250%);
    }
}

.hero-logo-cafd {
    height: 45px;
}

@media (max-width: 768px) {
    .hero-logos {
        flex-direction: column;
        gap: 1.25rem;
        margin: 20px auto 0;
    }

    .hero-logo {
        height: 50px;
    }

    .hero-logo-cafd {
        height: 38px;
    }
}

@media (max-width: 428px) {
    .hero-logos {
        gap: 1rem;
        margin: 15px auto 0;
    }

    .hero-logo {
        height: 45px;
    }

    .hero-logo-cafd {
        height: 34px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        margin-top: 80px;
        min-height: 400px;
        max-height: none;
    }

    .hero-container {
        width: 90%;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 1.8rem;  
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 428px) {
    .hero {
        min-height: 420px;
        padding: 0.75rem;
        margin-top: 90px;
    }

    .hero-container {
        width: 95%;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 375px) {
    .hero {
        min-height: 440px;
        padding: 0.5rem;
        margin-top: 100px;
    }

    .hero-content {
        padding: 1.25rem 0.5rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}

.hero h1 {
    font-size: 2.2rem;  
    margin-bottom: 1.2rem;  
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
    font-weight: 700;
    color: #ffffff;
    animation: titleFade 0.5s ease-out forwards;
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 auto 1.5rem;  
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: buttonsFade 0.5s ease-out 0.3s forwards;
}

@keyframes buttonsFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    min-width: 200px;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, 
        rgba(255,255,255,0.2), 
        rgba(255,255,255,0) 50%
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn:hover::before {
    transform: translateX(100%);
}

.primary-btn {
    background: linear-gradient(120deg, var(--primary-color), var(--cta-hover-color));
    color: white;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 85, 168, 0.25);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background: white;
    color: var(--cta-hover-color);
    border-color: var(--cta-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 85, 168, 0.15);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        padding: 0 1.5rem;
    }

    .hero-container {
        width: 85%;
        transform: none;
        min-height: 280px; /* Reduced height */
    }

    .hero-content {
        padding: 2rem;
        margin-top: -1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        margin-top: 0;
    }

    .hero-container {
        width: 90%;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        margin-top: -1rem;
    }

    .hero h1 {
        font-size: 1.8rem;  
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 428px) {
    .hero {
        min-height: 260px;
        padding: 0.75rem;
    }

    .hero-container {
        width: 95%;
    }

    .hero-content {
        padding: 1.25rem 0.75rem;
        margin-top: -0.75rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 375px) {
    .hero {
        min-height: 240px;
        padding: 0.5rem;
    }

    .hero-content {
        padding: 1rem 0.5rem;
        margin-top: -0.5rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-btn {
        width: calc(100% - 2rem);
        max-width: 280px;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 428px) {
    .hero-buttons {
        padding: 0 0.75rem;
    }
    
    .hero-btn {
        width: calc(100% - 1.5rem);
        max-width: 260px;
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Product Comparison Section [Product-02] */
/* Styling for product comparison cards */
.product_comparison {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto 2rem;
    max-width: 1200px;
    padding: 0 20px;
}

.product_card {
    flex: 1;
    max-width: 350px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.product_card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.product_card_header {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.product_card_content {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product_card h2 {
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-size: 1.5rem;
}

.product_card h3 {
    font-size: 1.5rem;
    margin: 0.35rem 0 0.15rem;
    color: var(--primary-color);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.product_card h3::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: -0.75rem;
    right: -0.75rem;
    bottom: -2.5rem;
    background: linear-gradient(90deg, 
        rgba(3, 85, 168, 0.02) 0%,
        rgba(3, 85, 168, 0.08) 15%,
        rgba(3, 85, 168, 0.12) 50%,
        rgba(3, 85, 168, 0.08) 85%,
        rgba(3, 85, 168, 0.02) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.model-number {
    color: rgba(3, 85, 168, 0.85);
    font-size: 0.85rem;
    display: block;
    margin: 0 0 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    z-index: 1;
}

.product_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    display: block;
}

.product_card p {
    color: white;
    margin: 0;
    line-height: 1.5;
    background: linear-gradient(to bottom right, rgba(3, 85, 168, 0.82), rgba(3, 85, 168, 0.7));
    padding: 0.75rem;
    border-radius: 0;
    font-size: 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-bottom: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    font-weight: 300;
    letter-spacing: 0.2px;
}

.resource_buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.5rem;
    background: linear-gradient(to bottom right, rgba(3, 85, 168, 0.75), rgba(3, 85, 168, 0.65));
    border-radius: 0 0 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    box-sizing: border-box;
    width: 100%;
}

.resource_btn {
    min-width: 100px;
    padding: 0.35rem 0.6rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0355a8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.resource_btn img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.resource_btn:hover {
    background-color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pdf_btn {
    color: #e74c3c;
}

.pdf_btn:hover {
    color: #c0392b;
}

.video_btn {
    color: #2980b9;
}

.video_btn:hover {
    color: #2c3e50;
}

.btn_icon {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.resource_btn:hover .btn_icon {
    opacity: 1;
}

@media (max-width: 1024px) {
    .product_comparison {
        flex-wrap: wrap;
    }
    
    .product_card {
        flex-basis: calc(50% - 1rem);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .product_comparison {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    .product_card {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .product_card img {
        height: 180px;
    }
    
    .product_card_content {
        padding: 0.75rem;
    }

    .resource_buttons {
        width: calc(100% + 1.5rem);
        margin: 0.75rem -0.75rem 0;
        padding: 0.75rem;
    }
    
    .resource_btn {
        min-width: 100px;
        padding: 0.35rem 0.6rem;
    }
}

@media (max-width: 1024px) {
    .product_comparison {
        gap: 1.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .product_comparison {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .product_card {
        width: 100%;
        max-width: 450px;
    }

    .product_card:hover {
        transform: translateY(-4px);
    }

    .product_card img {
        height: 250px;
    }

    .resource_buttons {
        padding: 0.75rem;
    }
}

@media (max-width: 428px) {
    .resource_buttons {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.5rem;
        width: 100%;
        margin: 0;
    }

    .resource_btn {
        width: 100%;
        max-width: none;
        padding: 0.35rem;
        justify-content: center;
        min-height: 32px;
        margin: 0;
    }

    .resource_btn img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 375px) {
    .resource_buttons {
        padding: 0.45rem;
        gap: 0.35rem;
    }

    .resource_btn {
        font-size: 0.85rem;
        padding: 0.3rem;
        min-height: 30px;
    }

    .resource_btn img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 320px) {
    .resource_buttons {
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .resource_btn {
        font-size: 0.8rem;
        padding: 0.25rem;
        gap: 0.3rem;
        min-height: 28px;
    }

    .resource_btn img {
        width: 12px;
        height: 12px;
    }
}

/* Benefits Section [Benefits-02] */
/* Styling for the benefits grid */
.benefits {
    padding: 3rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.benefits .title-section {
    background: linear-gradient(135deg, rgba(3, 85, 168, 0.08) 0%, rgba(48, 87, 56, 0.06) 100%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(3, 85, 168, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefits .title-section::before {
    content: '';
    position: absolute;
    left: -100vw;
    right: -100vw;
    top: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(3, 85, 168, 0.02) 15%,
        rgba(3, 85, 168, 0.03) 30%,
        rgba(48, 87, 56, 0.03) 70%,
        rgba(48, 87, 56, 0.02) 85%,
        transparent 100%
    );
    z-index: -1;
}

.benefits .title-section::after {
    content: '';
    position: absolute;
    left: -50%;
    right: -50%;
    top: -50%;
    bottom: -50%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(3, 85, 168, 0.02) 30%,
        rgba(48, 87, 56, 0.03) 50%,
        rgba(3, 85, 168, 0.02) 70%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: flowBackground 15s ease infinite;
    z-index: -2;
    transform: translateY(var(--scroll-offset, 0));
    will-change: transform;
}

@keyframes flowBackground {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefits .title-section::after {
        animation: none;
    }
}

.benefits .title-section h2 {
    margin-top: 0;
    letter-spacing: 0.01em;
    color: #2a2a2a;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #2a2a2a;
    position: relative;
    text-align: center;
}

.benefits-intro::before {
    display: none;
}

.benefits h2 {
    text-align: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: #0355a8;
    font-weight: 550;
    position: relative;
    letter-spacing: -0.01em;
    text-shadow: 
        0 2px 4px rgba(3, 85, 168, 0.1),
        0 1px 2px rgba(3, 85, 168, 0.08);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -25%;
    width: 150%;
    height: 1.5px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #0355a8 25%,
        #0577D0 50%,
        #0355a8 75%,
        transparent 100%
    );
    box-shadow: 0 1px 2px rgba(3, 85, 168, 0.08);
}

@media (max-width: 768px) {
    .benefits {
        padding: 2rem 0;
    }
    
    .benefits .title-section {
        padding: 1.25rem 1rem;
        margin-bottom: 2rem;
    }
    
    .benefits h2 {
        font-size: 1.5rem;
    }
    
    .benefits-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(3, 85, 168, 0.08) 0%,
        rgba(3, 85, 168, 0.05) 30%,
        rgba(3, 85, 168, 0.02) 60%,
        rgba(3, 85, 168, 0) 100%
    );
    z-index: 1;
}

.benefit-item:hover::before {
    background: linear-gradient(180deg, 
        rgba(3, 85, 168, 0.12) 0%,
        rgba(3, 85, 168, 0.08) 30%,
        rgba(3, 85, 168, 0.03) 60%,
        rgba(3, 85, 168, 0) 100%
    );
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item img {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
    filter: invert(24%) sepia(97%) saturate(1970%) hue-rotate(197deg) brightness(94%) contrast(101%);
    position: relative;
    z-index: 2;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #0355a8;
    text-align: center;
    position: relative;
    z-index: 2;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Video Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: transparent;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-modal:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0355a8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    background: rgba(3, 85, 168, 0.1);
}

.video-link:hover {
    color: #305738;
    background: rgba(48, 87, 56, 0.1);
}

.video-link::before {
    content: '▶';
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
    
    .close-modal {
        right: 0;
        top: -50px;
    }
}

/* Video Menu Styles */
.video-menu {
    display: none;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: calc(100% + 1.5rem);
    margin: 0.75rem -0.75rem 0;
    padding: 0.75rem;
    box-sizing: border-box;
}

.video-menu-item {
    padding: 10px 12px;
    background-color: rgba(3, 85, 168, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border: none;
    text-shadow: none;
}

.video-menu-item p {
    color: #555;
    margin: 0;
    font-size: 0.85rem;
    padding-left: 20px;
    background: none;
    border: none;
    text-shadow: none;
    border-radius: 0;
    padding: 0 0 0 20px;
}

.video-menu-item:hover {
    background-color: rgba(3, 85, 168, 0.1);
    transform: translateY(-2px);
}

.video-menu-item h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #0355a8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-menu-item h4::before {
    content: '▶';
    font-size: 0.8em;
    color: #0355a8;
}

/* Floating CTA Section [CTA-Float-01] */
/* Styling for the floating CTA at the bottom of the page */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.75rem 1rem;
}

.floating-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-address {
    font-size: 0.85rem;
    color: #333;
}

.cta-phone-website {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
    color: #333;
}

.cta-phone-website .separator {
    color: #999;
}

.cta-phone-website a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-phone-website a:hover {
    color: var(--cta-hover-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn.primary-btn {
    background: var(--primary-color);
    color: white;
    border: none;
}

.cta-btn.primary-btn:hover {
    background: var(--cta-hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(3, 85, 168, 0.2);
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 0.5rem;
    }

    .floating-cta-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .cta-contact-info {
        align-items: center;
    }

    .cta-phone-website {
        justify-content: center;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* Responsive Design [Responsive-01] */
/* Media queries for responsive layout adjustments */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .product-card {
        flex-basis: 100%;
        max-width: 350px;
    }

    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .full-website-link {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 4px 15px;
    }
    
    nav {
        padding: 4px 15px;
    }
}

footer.container {
    padding-bottom: 5rem;
}
