/* ===== COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --color-primary: #28a745;
    --color-secondary: #6c757d;
    --color-accent: #17a2b8;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    
    /* Light Shades */
    --color-primary-light: #d4edda;
    --color-secondary-light: #f8f9fa;
    --color-accent-light: #d1ecf1;
    --color-warning-light: #fff3cd;
    --color-danger-light: #f8d7da;
    
    /* Dark Shades */
    --color-primary-dark: #155724;
    --color-secondary-dark: #343a40;
    --color-accent-dark: #0c5460;
    --color-warning-dark: #856404;
    --color-danger-dark: #721c24;
    
    /* Font Sizes */
    --font-size-small: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
}

/* ===== GENERAL STYLES ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
}

/* ===== CONSERVATIVE TYPOGRAPHY ===== */
.navbar-brand {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-primary);
}

h1, .display-4 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: 1.2;
}

h2, .h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

h3, .h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
}

h4, .h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
}

h5, .h5 {
    font-size: var(--font-size-h5);
    font-weight: 500;
}

p, .lead {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.text-muted {
    color: var(--color-secondary);
}

/* ===== HEADER STYLES ===== */
.navbar {
    padding: var(--spacing-md) 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--color-secondary-dark);
    margin: 0 var(--spacing-sm);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

/* ===== HERO SECTION ===== */
#hero {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
    position: relative;
    overflow: hidden;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Decorative shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape-blob-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    opacity: 0.1;
    border-radius: 50% 30% 70% 40%;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    opacity: 0.1;
    border-radius: 40% 60% 50% 80%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--spacing-xxl) 0;
}

.bg-light {
    background-color: var(--color-secondary-light);
}

/* ===== CARD STYLES ===== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-title {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-sm);
}

/* ===== BUTTON STYLES ===== */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ===== FORM STYLES ===== */
.form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--color-secondary-dark);
    margin-bottom: var(--spacing-xs);
}

/* ===== ICON STYLES ===== */
.fa {
    color: inherit;
}

.text-success {
    color: var(--color-primary);
}

.text-primary {
    color: var(--color-accent);
}

.text-info {
    color: var(--color-accent);
}

.text-warning {
    color: var(--color-warning);
}

.text-danger {
    color: var(--color-danger);
}

/* ===== TEAM IMAGES ===== */
.team img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--color-primary-light);
    transition: border-color 0.3s ease;
}

.team img:hover {
    border-color: var(--color-primary);
}

/* ===== GALLERY STYLES ===== */
#gallery img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* ===== FOOTER STYLES ===== */
#footer {
    background-color: var(--color-secondary-dark);
}

#footer h5 {
    color: var(--color-primary-light);
    margin-bottom: var(--spacing-md);
}

#footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--color-primary-light);
}

/* ===== PRICING STYLES ===== */
.h3.text-success,
.h4.text-success {
    color: var(--color-primary);
}

/* ===== BREADCRUMB STYLES ===== */
.breadcrumb-section {
    background-color: var(--color-secondary-light);
    padding: var(--spacing-md) 0;
}

.breadcrumb-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* ===== PROCESS STEPS ===== */
.bg-primary {
    background-color: var(--color-primary);
}

/* ===== UTILITY CLASSES ===== */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* ===== ANIMATIONS (SAL.JS SUPPORT) ===== */
[data-sal] {
    transition-duration: 0.5s;
}

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    @media (prefers-reduced-motion: no-preference) {
        [data-sal] {
            transition: none;
        }
        
        .card:hover {
            transform: none;
        }
        
        .btn:hover {
            transform: none;
        }
        
        .shape-blob-1,
        .shape-blob-2 {
            animation: none;
        }
    }
}

/* ===== CUSTOM UTILITIES ===== */
.rounded-3 {
    border-radius: 12px;
}

.fw-bold {
    font-weight: 700;
}

.fw-medium {
    font-weight: 500;
}

/* ===== LIST STYLES ===== */
.list-unstyled li {
    margin-bottom: var(--spacing-xs);
}

.list-unstyled li i {
    margin-right: var(--spacing-xs);
}

/* ===== CONTACT INFO STYLES ===== */
#contacts .row:last-child .col-md-4 {
    margin-bottom: var(--spacing-lg);
}

#contacts i {
    color: var(--color-primary);
}

/* ===== HIGH CONTRAST FOOTER ===== */
#footer {
    color: #ffffff;
}

#footer .container hr {
    border-color: var(--color-secondary);
}

/* ===== RESPONSIVE SPACING ===== */
@media (max-width: 768px) {
    :root {
        --spacing-xxl: 2rem;
        --font-size-h1: 1.75rem;
        --font-size-h2: 1.5rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    section {
        padding: var(--spacing-xxl) 0;
    }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
