/* Footer logo styling */
.footer-logo {
    display: block;
    margin: 0 auto 10px auto;
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: transform 0.2s;
}
.footer-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    overflow-x: hidden;
    background: #0f0f0f;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 1px 30px rgba(239, 68, 68, 0.1);
}

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

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

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.nav-logo h2 {
    color: #ef4444;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    position: relative;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ef4444;
    border-radius: 1px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-subtitle {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-style: italic !important;
    font-size: 1rem;
    color: #ef4444;
    margin-top: -3px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    font-display: swap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ef4444;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.hero-secondary-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ef4444;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.hero-partnership {
    font-size: 1.4rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0.3px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ef4444;
    margin-top: 1rem;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    background: #dc2626;
}

.btn-secondary {
    background: transparent;
    color: #ef4444;
    border-color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-secondary:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: translateY(-2px);
}

.hero-image {
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #1a1a1a;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #262626;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.service-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #0f0f0f;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-question i {
    color: #ef4444;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
        max-height: 300px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
}

/* Power Calculator Section */
.power-calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
}

.power-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
}

.calculator-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
    position: relative;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partnership-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-container:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.company-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.partnership-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-icon i {
    font-size: 3rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 20px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.connection-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0.1);
    }
}

.partnership-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.benefit-item i {
    color: #ef4444;
    font-size: 1.5rem;
}

.benefit-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #0f0f0f;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(38, 38, 38, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(38, 38, 38, 0.8);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(10px);
}

.feature-item i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.6;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #1a1a1a;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.about-text p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    flex: 1;
}

.stat h3 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.stat p {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #1a1a1a;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #262626;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: rgba(239, 68, 68, 0.4);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAIR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ef4444;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
    transition: left 0.5s ease;
}

.pricing-card:hover::after {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 700;
}

.price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #ef4444;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #ef4444;
    font-size: 1rem;
    min-width: 16px;
}

.pricing-note {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.pricing-note p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-note strong {
    color: #ef4444;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #0f0f0f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ef4444 50%, transparent 100%);
    transition: left 0.5s ease;
}

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

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.contact-item i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.contact-item p {
    color: #94a3b8;
    line-height: 1.6;
}

.contact-item p a,
.footer-section ul li a[href^="tel:"],
.footer-section ul li a[href^="mailto:"] {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover,
.footer-section ul li a[href^="tel:"]:hover,
.footer-section ul li a[href^="mailto:"]:hover {
    color: #ef4444;
}

.contact-form {
    background: #262626;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #404040;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #1a1a1a;
    color: #e2e8f0;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #94a3b8;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #ef4444;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.footer-section h4 {
    color: #f1f5f9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.footer-section p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #ef4444;
}

.footer-section ul li a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ef4444;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: #262626;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.social-links a:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    color: #6b7280;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #ef4444 !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626 !important;
    text-decoration: underline;
}

.footer-links span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Cookie policy links styling */
a[href="cookiebeleid.html"] {
    color: #ef4444 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href="cookiebeleid.html"]:hover {
    color: #dc2626 !important;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .services,
    .features,
    .about,
    .contact,
    .pricing,
    .partnership {
        padding: 60px 0;
    }

    .partnership-logos {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .partnership-icon {
        order: 0;
    }

    .logo-container:first-child {
        order: -1;
    }

    .logo-container:last-child {
        order: 1;
    }

    .partner-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .partnership-icon i {
        font-size: 2rem;
        padding: 15px;
    }

    .connection-line {
        display: none;
    }

    .partnership-text h2 {
        font-size: 2rem;
    }

    .partnership-text p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .partnership-benefits {
        gap: 20px;
    }

    .benefit-item {
        padding: 12px 20px;
        flex: 1;
        min-width: 140px;
    }

    .benefit-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1a202c;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .hero {
        background: none;
        color: black;
    }

    .service-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid #ef4444;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: auto;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-header i {
    font-size: 2rem;
    color: #ef4444;
}

.cookie-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cookie-body p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cookie-categories {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #64748b;
    border-radius: 30px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #ef4444;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-slider.essential {
    background-color: #10b981 !important;
    opacity: 0.7;
}

.cookie-toggle input:disabled {
    cursor: not-allowed;
}

.cookie-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.cookie-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.cookie-btn-top {
    width: calc(100% + 15px);
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.cookie-actions-bottom {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-actions-bottom .btn {
    flex: 1;
    min-width: 150px;
}

.cookie-links {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

.cookie-links a {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cookie-links a:hover {
    color: #ffffff;
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.4);
}

.cookie-settings-btn i {
    color: white;
    font-size: 1.5rem;
}

/* WhatsApp Chat Button */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat-btn i {
    color: white;
    font-size: 1.8rem;
}

/* Floating Buttons Responsive */
@media (max-width: 768px) {
    .cookie-settings-btn,
    .whatsapp-chat-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
    }
    
    .cookie-settings-btn {
        left: 15px;
    }
    
    .whatsapp-chat-btn {
        right: 15px;
    }
    
    .cookie-settings-btn i {
        font-size: 1.3rem;
    }
    
    .whatsapp-chat-btn i {
        font-size: 1.6rem;
    }
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        max-height: 95vh;
        border-radius: 20px 20px 0 0;
    }
    
    .cookie-content {
        padding: 25px 15px;
    }
    
    .cookie-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-body p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .cookie-categories {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-info h4 {
        font-size: 1rem;
    }
    
    .cookie-info p {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-btn-top {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 8px;
    }
    
    .cookie-actions-bottom {
        gap: 10px;
    }
    
    .cookie-actions-bottom .btn {
        flex: 1;
        min-width: 120px;
        font-size: 0.9rem;
        padding: 12px 8px;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ef4444;
}

.legal-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.last-updated {
    color: #94a3b8;
    font-style: italic;
    font-size: 1.1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.legal-section h2 {
    color: #ef4444;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    color: #e2e8f0;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: rgba(239, 68, 68, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
}

.cookie-category-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cookie-details {
    margin-top: 15px;
}

.cookie-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #ef4444;
}

.cookie-item strong {
    color: #ef4444;
    display: block;
    margin-bottom: 5px;
}

.cookie-duration {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

.cookie-settings-trigger {
    text-align: center;
    margin: 25px 0;
}

.related-links {
    margin: 40px 0;
}

.related-links h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.link-cards {
    display: grid;
    gap: 20px;
}

.link-card {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ef4444;
    transform: translateY(-2px);
}

.link-card i {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 15px;
}

.link-card h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.link-card p {
    color: #94a3b8;
    margin: 0;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 40px;
    }
    
    .legal-header h1 {
        font-size: 2.2rem;
    }
    
    .legal-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-category-info {
        padding: 20px;
    }
}

/* Bensky Calculator Custom Styles */
h5,
.d-flex.justify-content-between.mb-0.pb-3.gap-1,
.d-flex.justify-content-between.mb-0.pb-3.gap-1 * {
    color: #ef4444 !important;
}

.btn.btn-primary.py-2.bs-quote-tab,
.btn.btn-primary.py-2.bs-quote-tab.order-0.order-md-1 {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: white !important;
}

.btn.btn-primary.py-2.bs-quote-tab:hover {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

.btn.btn-outline-primary.py-2.js-back-button,
.btn.btn-outline-primary.py-2.js-back-button.order-1.order-md-0 {
    background: transparent !important;
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.btn.btn-outline-primary.py-2.js-back-button:hover {
    background: #ef4444 !important;
    color: white !important;
}