/* CSS Variables - Color Palette */
:root {
    --primary-green: #375e22;
    --primary-orange: #f28549;
    --primary-brown: #a03c0c;
    --primary-blue: #3686d3;
    --primary-beige: #ffe7d6;
    --light-green: #81a46c;
    --light-orange: #f08c64;
    --light-brown: #e3caab;
    --light-blue: #8ec1d7;
    --light-beige: #FFF8F0;
    --dark-green: #111f08;
    --dark-orange: #b8480f;
    --dark-brown: #593b23;
    --dark-blue: #295ca7;
    --dark-beige: #d9cab8;
    --white: #ffffff;
    --black: #272727;
    --gray-light: #f8f9fa;
    --gray-medium: #717b8a;
    --gray-dark: #63686c;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--light-green));
    --gradient-hero: linear-gradient(135deg, var(--primary-orange), var(--primary-brown));
    --gradient-card: linear-gradient(145deg, var(--light-beige), var(--primary-beige));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    font-size: 1.09rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header */
.navbar-brand {
    font-weight: 600;
    color: var(--primary-green) !important;
    font-size: 1.44rem;
}

.navbar-nav .nav-link {
    color: var(--gray-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../FIN_images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.52rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.44rem;
    font-weight: 400;
    color: var(--light-beige);
}

.hero-description {
    font-size: 1.04rem;
    color: var(--light-beige);
}

/* Typography */
h2 {
    font-size: 2.08rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.11rem;
}

h3 {
    font-size: 1.43rem;
    font-weight: 500;
    color: var(--primary-brown);
    margin-bottom: 1.11rem;
}

h4 {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.58rem;
}

p {
    font-size: 1.09rem;
    color: var(--gray-dark);
    margin-bottom: 1.11rem;
}

/* Cards */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--gradient-card);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 26px rgba(33, 72, 20, 0.15);
}

.feature-icon {
    font-size: 2.52rem;
    color: var(--primary-orange);
    margin-bottom: 1.11rem;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 7px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.87rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-content li {
    padding: 0.3rem 0;
    color: var(--gray-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-content li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}

.price {
    font-size: 1.88rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-top: 1.21rem;
}

/* Team */
.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.11rem;
    border: 4px solid var(--primary-beige);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--primary-beige);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(250, 149, 82, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 61, 18, 0.30);
}

/* Footer */
footer {
    background: var(--dark-green) !important;
}

footer h5 {
    color: var(--primary-orange);
    margin-bottom: 1.11rem;
}

footer a {
    color: var(--light-beige) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-orange) !important;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
