/* ===================================
   CSS Variables - Color Palette
   =================================== */
:root {
    /* Primary Colors */
    --primary-green: #4CAF50;
    --secondary-blue: #2196F3;
    --accent-orange: #FF9800;
    --warning-yellow: #FFC107;
    --success-emerald: #009688;
    
    /* Light Shades */
    --light-green: #E8F5E8;
    --light-blue: #E3F2FD;
    --light-orange: #FFF3E0;
    --light-yellow: #FFFDE7;
    --light-emerald: #E0F2F1;
    
    /* Dark Shades */
    --dark-green: #2E7D32;
    --dark-blue: #1565C0;
    --dark-orange: #E65100;
    --dark-yellow: #F57F17;
    --dark-emerald: #00695C;
    
    /* Neutral Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #F8F9FA;
    --border-light: #E9ECEF;
}

/* ===================================
   Base Styles
   =================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    body {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.h2 {
    font-size: 2rem;
}

.h5 {
    font-size: 1.1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* ===================================
   Header & Navigation
   =================================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}

/* ===================================
   Hero Section
   =================================== */
#hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-shape {
    width: 300px;
    height: 300px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    top: 10%;
    right: -5%;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#hero .btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* ===================================
   Card Components
   =================================== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   Service Cards
   =================================== */
.services .card .list-unstyled li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.services .card .list-unstyled .fas {
    width: 16px;
    margin-right: 0.5rem;
}

.services .text-primary {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
}

/* ===================================
   Features Section
   =================================== */
.features .fas {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.features .d-flex {
    align-items: flex-start;
}

.features .me-3 {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* ===================================
   Pricing Cards
   =================================== */
.border-primary {
    border-color: var(--primary-green);
    position: relative;
}

.border-primary::before {
    content: "Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===================================
   Team Section
   =================================== */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* ===================================
   Timeline
   =================================== */
.timeline .timeline-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ===================================
   Contact Section
   =================================== */
.contact-info {
    background: var(--light-green);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info .fas {
    color: var(--primary-green);
    width: 20px;
    margin-right: 1rem;
}

/* ===================================
   Form Styles
   =================================== */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid var(--border-light);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* ===================================
   Gallery
   =================================== */
.gallery img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ===================================
   Footer
   =================================== */
#footer {
    background-color: var(--text-dark);
    color: #ffffff;
}

#footer h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

#footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-green);
}

#footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

/* ===================================
   Utility Classes
   =================================== */
.pt-header {
    padding-top: 100px;
}

.text-muted {
    color: var(--text-muted);
}

.bg-light {
    background-color: var(--bg-light);
}

/* ===================================
   Animation Classes (Sal.js)
   =================================== */
[data-sal] {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    animation: none !important;
}

/* Ensure all sal-animate elements are visible */
.sal-animate {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Disable all animations site-wide for better performance and accessibility */
* {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    animation-delay: 0s !important;
    transition-delay: 0s !important;
}

/* Ensure body is not set to sal-disabled which could affect styling */
body.sal-disabled {
    overflow: visible !important;
}

/* ===================================
   Icon Styles
   =================================== */
.fa-2x {
    font-size: 2em;
}

.text-success {
    color: var(--success-emerald);
}

/* ===================================
   Breadcrumbs
   =================================== */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
