:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-color: #98bf9a;
    --secondary-color: #ccd4c8;
    --accent-color: #719271;
    --neutral-color: #3f653f;
    --background-color: #F8F9FA;
    
    /* Light/Dark Shades */
    --primary-light: #9fbc99;
    --primary-dark: #618865;
    --secondary-light: #d1e8cf;
    --secondary-dark: #9bb190;
    --accent-light: #899287;
    --accent-dark: #6b8068;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: var(--line-height-base);
    color: var(--neutral-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.89rem;
}

h3 {
    font-size: 1.59rem;
}

.navbar-brand {
    font-size: 1.61rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    transition: all 1.08s ease;
    padding: var(--spacing-sm) 0;
}

.navbar-nav .nav-link {
    color: var(--neutral-color);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: color 0.98s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="%23739072" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="%2386A789" opacity="0.15"/></svg>');
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.77s ease, box-shadow 1.28s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 13px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    transition: all 0.84s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    padding: var(--spacing-sm);
    transition: border-color 1.13s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(148, 177, 151, 0.25);
}

/* Icons */
.fas, .far {
    color: var(--primary-color);
}

/* Gallery */
#gallery img {
    border-radius: 8px;
    transition: transform 1.18s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Team Section */
#team img {
    width: 122px;
    height: 120px;
    object-fit: cover;
}

/* Footer */
#footer {
    background-color: var(--neutral-color);
    color: white;
}

#footer h5, #footer h6 {
    color: var(--secondary-light);
}

#footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 1.02s ease;
}

#footer a:hover {
    color: white;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: var(--spacing-sm) 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.42s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Price Highlighting */
.border-primary {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(131, 185, 144, 0.30);
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.43s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* List Styles */
ul {
    padding-left: 0;
}

ul li {
    list-style: none;
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

ul li::before {
    content: '';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Utilities */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--background-color);
}

/* Special Effects */
.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    z-index: 1;
}

.hero-decoration:nth-child(1) {
    top: 10%;
    right: 10%;
}

.hero-decoration:nth-child(2) {
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
