/* InvestPro Polska - Custom Styles */

/* Global Styles - Clean section */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;  
}

/* Navigation - messy section */
.navbar-brand {
color: #fff !important;
font-weight: bold;
font-size: 1.5rem;
}
.navbar-brand svg{
margin-right: 8px;
}
.navbar-nav .nav-link {
color: #fff !important;
transition: color 0.3s ease;
padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.welcome-area {
    position: relative;
    z-index: 1;
    margin-top: 76px;
}

.single-welcome-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-overlay::after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    content: "";
}

.welcom-text {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* trying different approach for buttons */
.alime-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.alime-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.hero-mail-contact {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-mail-contact:hover {
    color: var(--primary-color);
}

/* Services Section - messier formatting here */
.site-section{
padding: 100px 0;
}
.scisors{
font-size: 2.5rem;
font-weight: 700;
color: var(--dark-color);
margin-bottom: 1rem;
}

.item-1 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.item-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.item-1 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.item-1-contents {
    padding: 2rem;
}

.item-1-contents h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.item-1-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.item-1-contents ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.item-1-contents ul li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Features Section */
.features-wrap-container {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.feature-service-item {
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    
}

.feature-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-service-item svg {
    margin-bottom: 1.5rem;
}

.feature-service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.feature-service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.starter-plan .plan-icon {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.premium-plan .plan-icon {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--dark-color);
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-item.disabled {
    color: #ccc;
}

.plan-footer {
    text-align: center;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-starter {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #fff;
}

.btn-starter:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    color: #fff;
}

.btn-professional {
    background: linear-gradient(45deg, var(--primary-color), #0056b3);
    color: #fff;
}

.btn-professional:hover {
    background: linear-gradient(45deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
    color: #fff;
}

.btn-premium {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: #fff;
}

.btn-premium:hover {
    background: linear-gradient(45deg, #fd7e14, #ffc107);
    transform: translateY(-2px);
    color: #fff;
}

.min-investment {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.pricing-note {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.pricing-note h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-note p {
    color: #666;
    line-height: 1.6;
}

/* General section styles */
.ftco-section {
    padding: 100px 0;
}

.heading-section {
    margin-bottom: 3rem;
}

.subheading {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section - mixing styles again */
.ftco-about{
min-height: 500px;
}
.ftco-about .one-half{
flex: 1;
}
.ftco-about .img{
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
min-height: 500px;
}

.overlap {
    padding: 3rem;
    background: #fff;
    margin: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overlap h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.overlap p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.ftco-appointment {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--info-color));
    color: #fff;
    padding: 100px 0;
}

.ftco-appointment .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.container-wrap {
    position: relative;
    z-index: 2;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.appointment {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 15px;
    color: var(--dark-color);
}

.appointment h3 {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.appointment-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.appointment-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* TODO: clean this up later */
.appointment-form .btn {
border-radius: 25px;
padding: 15px 40px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    border-top: 3px solid var(--primary-color);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .hero-btn-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ftco-about {
        flex-direction: column;
    }
    
    .overlap {
        margin: 1rem;
        padding: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container-wrap .row.no-gutters {
        flex-direction: column;
    }
    
    .appointment {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .site-section,
    .ftco-section,
    .features-wrap-container {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .scisors {
        font-size: 2rem;
    }
    
    .price-rate h3 {
        font-size: 1.5rem;
    }
}

/* Animation classes for future use */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Additional styles for specific pages */
.service-detail-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon svg {
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    padding-left: 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-benefits li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-info {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* Terms and Privacy pages */
.terms-section, .privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child, .privacy-section:last-child {
    border-bottom: none;
}

.terms-section h2, .privacy-section h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.terms-section h3, .privacy-section h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section ol, .privacy-section ol {
    padding-left: 1.5rem;
}

.terms-section ul, .privacy-section ul {
    padding-left: 1.5rem;
}

.terms-section li, .privacy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-info {
    border: 1px solid #dee2e6;
    border-radius: 10px;
}

.contact-info h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Dark mode support - not implemented yet */
/* 
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #fff;
    }
}
*/ 