@font-face {
    font-family: 'CustomFont';
    src: url('font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

/* Mobile header visibility - show only on mobile devices */
@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }

    /* Hide desktop nav on mobile */
    .fixed-nav {
        display: none;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1B3724;
    overflow-x: hidden;
}

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

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(27 55 36 / 30%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Enhanced Navigation Logo */
.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(250, 237, 188, 0.3);
}

.nav-logo-icon i {
    font-size: 1.5rem;
    color: #1B3724;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FAEDBC;
    letter-spacing: 2px;
    font-family: 'CustomFont', sans-serif;
}

.nav-logo-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(27, 55, 36, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 280px;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(250, 237, 188, 0.1);
    color: #FAEDBC;
    padding-left: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FAEDBC;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FAEDBC;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #FAEDBC 0%, #f4d03f 100%);
    color: #1B3724;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 237, 188, 0.4);
}

.nav-cta i {
    font-size: 0.9rem;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1B3724 0%, #1E7142 100%);
    padding-top: 140px;
}

/* Hero compatto per pagine secondarie */
.hero.hero-compact {
    min-height: auto;

}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(250, 237, 188, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(250, 237, 188, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FAEDBC" opacity="0.3"><animate attributeName="opacity" dur="3s" values="0.3;0.8;0.3" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="%23FAEDBC" opacity="0.5"><animate attributeName="opacity" dur="2s" values="0.5;1;0.5" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1.5" fill="%23FAEDBC" opacity="0.4"><animate attributeName="opacity" dur="4s" values="0.4;0.9;0.4" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: particlesFloat 30s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1400px;
    width: 100%;
}

/* New Hero Layout Styles */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    text-align: left;
}

.hero-right {
    justify-self: end;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 237, 188, 0.2);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-form-header h3 {
    font-size: 1.5rem;
    color: #FAEDBC;
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
}

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

.form-group-hero input,
.form-group-hero select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(250, 237, 188, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-hero input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-hero input:focus,
.form-group-hero select:focus {
    outline: none;
    border-color: #FAEDBC;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(250, 237, 188, 0.2);
}

.form-group-hero select option {
    background: #1B3724;
    color: white;
}

.btn-hero-form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FAEDBC 0%, #f4d03f 100%);
    color: #1B3724;
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hero-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 237, 188, 0.3);
}

.form-privacy-hero {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
}

/* Mobile Responsive for Hero Layout */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
        justify-self: center;
    }

    .hero-form-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-layout {
        gap: 30px;
    }

    .hero-form-container {
        padding: 25px 20px;
    }

    .form-group-hero input,
    .form-group-hero select {
        padding: 12px;
        font-size: 0.95rem;
    }

    .btn-hero-form-submit {
        padding: 12px;
        font-size: 0.9rem;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInFromBottom 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.highlight-text {
    background: linear-gradient(45deg, #FAEDBC, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    text-align: center;
}

.hero-quote {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 237, 188, 0.2);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.quote-icon {
    font-size: 2rem;
    color: #FAEDBC;
    margin-bottom: 15px;
}

.hero-quote p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-cta {
    margin-top: 50px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FAEDBC 0%, #f4d03f 100%);
    color: #1B3724;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(250, 237, 188, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(250, 237, 188, 0.5);
}

.btn-hero-primary i {
    margin-right: 15px;
    font-size: 1.1rem;
}

.hero-contact {
    margin-top: 30px;
}

.hero-urgency {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FAEDBC;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-link {
    color: #FAEDBC;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover {
    color: white;
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    color: #FAEDBC;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1B3724 0%, #0d1a0f 100%);
    position: relative;
    overflow: hidden;
}

.problem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(250, 237, 188, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(30, 113, 66, 0.1) 70%);
}

.section-title-white {
    font-size: 3.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title-white::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #FAEDBC, #1E7142);
    border-radius: 2px;
}

.problem-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.8;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(250, 237, 188, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(250, 237, 188, 0.1);
    border-color: rgba(250, 237, 188, 0.3);
}

.stat-item i {
    font-size: 3rem;
    color: #FAEDBC;
    margin-bottom: 20px;
}

.stat-item h4 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #FAEDBC;
    margin-bottom: 15px;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Enhanced Products Section */
.products-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-subtitle-white {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.section-titlex {
    font-size: 3rem;
    text-align: center;
    color: #000000;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(250, 237, 188, 0.3), transparent);
    border-radius: 50%;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(27, 55, 36, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1E7142, #FAEDBC);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 0;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(27, 55, 36, 0.2);
    border-color: rgba(250, 237, 188, 0.3);
}

.product-card.featured-product {
    background: linear-gradient(135deg, #ffffff 0%, #fcf8e8 100%);
    border: 2px solid #FAEDBC;
    grid-column: span 2;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E7142, #1B3724);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #FAEDBC, #f4d03f);
}

.product-icon i {
    font-size: 2.5rem;
    color: white;
    transition: color 0.3s ease;
}

.product-card:hover .product-icon i {
    color: #1B3724;
}

.product-card h3 {
    font-size: 1.8rem;
    color: #1E7142;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(27, 55, 36, 0.02);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.feature-label {
    font-weight: 600;
    color: #1B3724;
}

.feature-value {
    font-weight: bold;
    color: #1E7142;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.benefit-tag {
    background: linear-gradient(135deg, #1E7142, #1B3724);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-description {
    margin: 20px 0;
}

.product-description p {
    line-height: 1.7;
    color: #555;
}

.product-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.advantage {
    padding: 12px 15px;
    background: rgba(250, 237, 188, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1B3724;
    border-left: 4px solid #FAEDBC;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1E7142 0%, #1B3724 100%);
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(250, 237, 188, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(250, 237, 188, 0.05) 0%, transparent 50%);
    animation: benefitsBgFloat 25s ease-in-out infinite alternate;
}

@keyframes benefitsBgFloat {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    100% { transform: translateX(20px) translateY(-10px) rotate(2deg); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    color: white;
    border: 1px solid rgba(250, 237, 188, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(250, 237, 188, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: rgba(250, 237, 188, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.benefit-card.featured {
    border: 2px solid #FAEDBC;
    background: rgba(250, 237, 188, 0.15);
}

.benefit-card.highlighted-tax {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(250, 237, 188, 0.15) 100%);
    position: relative;
}

.benefit-card.highlighted-tax::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(250, 237, 188, 0.2) 100%);
}

.benefit-card.highlighted-tax .benefit-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.benefit-card.highlighted-tax:hover {
    border-color: #FFD700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FAEDBC, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #1B3724;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.benefit-highlight {
    background: linear-gradient(135deg, #FAEDBC, #f4d03f);
    color: #1B3724;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

/* Tax Deduction Section */
.tax-deduction-section {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tax-deduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 85,100 0,100" fill="%23ffffff" opacity="0.05"/></svg>') repeat;
    animation: taxFloat 20s ease-in-out infinite;
}

@keyframes taxFloat {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

.tax-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.tax-header {
    text-align: center;
    margin-bottom: 50px;
}

.tax-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.tax-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.tax-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.tax-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.tax-benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tax-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tax-benefit-item:hover::before {
    left: 100%;
}

.tax-benefit-item.featured {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.tax-benefit-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tax-percentage {
    font-size: 4rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    line-height: 1;
}

.tax-description h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.tax-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tax-cta {
    text-align: center;
}

.tax-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.btn-tax-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #DC2626;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tax-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Mobile Responsive for Tax Section */
@media (max-width: 768px) {
    .tax-deduction-section {
        padding: 60px 0;
    }

    .tax-title {
        font-size: 2rem;
    }

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

    .tax-benefit-item {
        padding: 30px 20px;
    }

    .tax-percentage {
        font-size: 3rem;
    }

    .tax-description h3 {
        font-size: 1.3rem;
    }

    .btn-tax-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.process-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #1E7142;
    color: #1E7142;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1E7142, #1B3724);
    transition: left 0.3s ease;
    z-index: 0;
}

.tab-btn:hover::before,
.tab-btn.active::before {
    left: 0;
}

.tab-btn:hover,
.tab-btn.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 113, 66, 0.3);
}

.tab-btn span {
    position: relative;
    z-index: 1;
}

.tab-content {
    display: none;
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(27, 55, 36, 0.1);
}

.tab-content.active {
    display: block;
    animation: tabSlideIn 0.5s ease-out;
}

@keyframes tabSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E7142, #1B3724);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(30, 113, 66, 0.3);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1B3724;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.process-arrow {
    font-size: 2rem;
    color: #FAEDBC;
    flex-shrink: 0;
}

.nano-explanation {
    text-align: center;
}

.nano-visual {
    margin-bottom: 50px;
}

.nano-atom {
    font-size: 5rem;
    color: #1E7142;
    animation: atomSpin 10s linear infinite;
    margin-bottom: 20px;
    display: block;
}

@keyframes atomSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nano-visual h3 {
    font-size: 2.5rem;
    color: #1B3724;
    margin-bottom: 20px;
}

.nano-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.nano-benefit {
    background: rgba(30, 113, 66, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #FAEDBC;
}

.nano-benefit i {
    font-size: 2.5rem;
    color: #1E7142;
    margin-bottom: 15px;
}

.nano-benefit h4 {
    color: #1B3724;
    font-size: 1.2rem;
}

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

.vmc-step {
    text-align: center;
    padding: 30px;
    background: rgba(30, 113, 66, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vmc-step:hover {
    transform: translateY(-10px);
    background: rgba(250, 237, 188, 0.1);
}

.vmc-step i {
    font-size: 3rem;
    color: #1E7142;
    margin-bottom: 20px;
}

.vmc-step h4 {
    color: #1B3724;
    font-size: 1.2rem;
}

/* Certifications Section */
.certifications-section {
    padding: 120px 0;
    background: white;
    color: #1B3724;
}

.cert-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    border: 2px solid #FAEDBC;
    transition: all 0.5s ease;
}

.cert-badge:hover {
    transform: scale(1.05);
    background: rgba(250, 237, 188, 0.15);
}

.cert-badge i {
    font-size: 4rem;
    color: #FAEDBC;
    margin-bottom: 20px;
}

.cert-badge h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cert-list {
    display: grid;
    gap: 25px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(250, 237, 188, 0.1);
    transform: translateX(10px);
}

.cert-item i {
    font-size: 1.5rem;
    color: #FAEDBC;
    flex-shrink: 0;
}

.cert-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Enhanced Contact Form */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1B3724 0%, #0d1a0f 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(250, 237, 188, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(30, 113, 66, 0.1) 0%, transparent 60%);
    animation: contactBgMove 30s ease-in-out infinite alternate;
}

@keyframes contactBgMove {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-20px) translateX(20px); }
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.contact-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.enhanced-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(250, 237, 188, 0.3);
}

.form-section {
    margin-bottom: 50px;
}

.form-section-title {
    font-size: 1.5rem;
    color: #1B3724;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.form-section-title i {
    font-size: 1.3rem;
    color: #1E7142;
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1B3724;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    z-index: 2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1E7142;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 113, 66, 0.15);
}

.form-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E7142, #FAEDBC);
    transition: width 0.3s ease;
    z-index: 1;
}

.form-group input:focus + .form-focus-border,
.form-group select:focus + .form-focus-border,
.form-group textarea:focus + .form-focus-border {
    width: 100%;
}

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

.checkbox-card {
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-content {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.checkbox-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 113, 66, 0.05), rgba(250, 237, 188, 0.1));
    transition: left 0.3s ease;
}

.checkbox-card:hover .checkbox-content::before,
.checkbox-card input:checked + .checkbox-content::before {
    left: 0;
}

.checkbox-card:hover .checkbox-content,
.checkbox-card input:checked + .checkbox-content {
    border-color: #1E7142;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 113, 66, 0.15);
}

.checkbox-content i {
    font-size: 2rem;
    color: #1E7142;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.checkbox-content span {
    font-weight: 600;
    color: #1B3724;
    position: relative;
    z-index: 2;
}

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

.radio-card {
    cursor: pointer;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-content {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.radio-card:hover .radio-content,
.radio-card input:checked + .radio-content {
    border-color: #1E7142;
    background: linear-gradient(135deg, rgba(30, 113, 66, 0.05), rgba(250, 237, 188, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 113, 66, 0.12);
}

.radio-content i {
    font-size: 1.5rem;
    color: #1E7142;
}

.radio-content span {
    font-weight: 600;
    color: #1B3724;
}

.form-submit {
    text-align: center;
    margin-top: 50px;
}

.btn-form-submit {
    background: linear-gradient(135deg, #FAEDBC 0%, #f4d03f 100%);
    color: #1B3724;
    border: none;
    padding: 20px 60px;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(250, 237, 188, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-form-submit:hover::before {
    left: 100%;
}

.btn-form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(250, 237, 188, 0.6);
}

.btn-form-submit i {
    margin-right: 15px;
}

.form-privacy {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info-bottom {
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(250, 237, 188, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(250, 237, 188, 0.15);
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2rem;
    color: #FAEDBC;
    flex-shrink: 0;
}

.contact-method h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-method a,
.contact-method span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: #FAEDBC;
}

/* Footer */
.footer {
    background: #0d1a0f;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin: 0;
    opacity: 0.8;
    font-size: 1rem;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #1E7142, #FAEDBC);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Parallax Effects */
.parallax-section {
    position: relative;
    overflow: hidden;
}



/* Custom animations for modern feel */
@keyframes modernSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modernFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: modernSlideUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Waterproof Section Styles */
.waterproof-badge {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.waterproof-features {
    margin-top: 2rem;
}

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

.waterproof-feature {
    background: rgba(30, 113, 66, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #FAEDBC;
    transition: all 0.3s ease;
}

.waterproof-feature:hover {
    transform: translateY(-10px);
    background: rgba(250, 237, 188, 0.1);
}

.waterproof-feature i {
    font-size: 2.5rem;
    color: #1E7142;
    margin-bottom: 15px;
}

.waterproof-feature h4 {
    color: #1B3724;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.waterproof-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured-product {
        grid-column: span 1;
    }
    
    .cert-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-white {
        font-size: 2.2rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .enhanced-form {
        padding: 40px 30px;
    }
    
    .problem-stats {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}
