/* PineScopo - Global Styles */

:root {
    --primary-color: #2d8a6f;
    --primary-dark: #1f5f4f;
    --primary-light: #4da89e;
    --accent-color: #0c6b5f;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.hero-section {
    background: linear-gradient(135deg, #2d8a6f 0%, #1f5f4f 100%);
    color: white;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #2d8a6f;
    margin-bottom: 1rem;
}

.tech-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.tech-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: auto;
    width: 100px;
    display: inline-block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d4520;
    margin-left: -5%;
}

.logo-brand:hover {
    text-decoration: none;
    color: inherit;
}

.logo-brand:focus {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #2d8a6f 0%, #1f5f4f 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 138, 111, 0.3);
}

.stats-section {
    background-color: #2d8a6f;
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Stats animation styles */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, transform 0.3s ease;
}

.stats-section.animated .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    min-width: 80px;
    text-align: right;
}

.suffix {
    font-size: 1.8rem;
    opacity: 0.9;
    font-weight: 700;
}

/* Hover animation for stat items */
.stat-item:hover {
    transform: scale(1.05) translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer {
    background-color: #212529;
    color: white;
    padding: 50px 0 20px;
}

.page-header {
    background: linear-gradient(135deg, #2d8a6f 0%, #1f5f4f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control:focus {
    border-color: #2d8a6f;
    box-shadow: 0 0 0 0.2rem rgba(45, 138, 111, 0.25);
}

.form-select:focus {
    border-color: #2d8a6f;
    box-shadow: 0 0 0 0.2rem rgba(45, 138, 111, 0.25);
}

.social-links {
    padding-top: 1rem;
}

.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #2d8a6f !important;
}

/* Contact Page Styling */
.contact-section .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
}

.contact-section .bg-light {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
}

/* Responsive spacing for contact page */
@media (max-width: 991px) {
    .contact-form {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

