/* Vintage Maps - Main CSS */

:root {
    --primary-color: #895617;    /* Saddle Brown */
    --secondary-color: #d1662e;  /* Chocolate */
    --accent-color: #c77631;     /* Peru */
    --dark-color: #6b441d;       /* Dark Brown */
    --light-color: #f6e7db;      /* Antique White */
    
    /* Light and dark shades */
    --primary-light: #ac5d22;
    --primary-dark: #7e572c;
    --secondary-light: #d17b11;
    --secondary-dark: #ad8500;
    --accent-light: #e8bd90;
    --accent-dark: #b99b75;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 6px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--light-color) !important;
    font-weight: bold;
    font-size: 1.25rem;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-light) !important;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(rgba(121, 67, 6, 0.70), rgba(208, 124, 16, 0.70)), 
                url('../KIL_images/hero-bg.webp') center/cover no-repeat;
    color: white;
    padding-top: 83.00px;
}

.hero-content h1 {
    font-size: 2.58rem;
    font-weight: bold;
    margin-bottom: 1.09rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 1.59rem;
    font-weight: 300;
    margin-bottom: 1.09rem;
    color: var(--accent-light);
}

.hero-content p {
    font-size: 1.14rem;
    margin-bottom: 2.15rem;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    color: var(--primary-color);
    font-size: 2.11rem;
    font-weight: bold;
    margin-bottom: 1.09rem;
}

h3 {
    color: var(--secondary-color);
    font-size: 1.43rem;
    font-weight: 500;
    margin-bottom: 1.09rem;
}

h4 {
    color: var(--dark-color);
    font-size: 1.14rem;
    font-weight: 600;
    margin-bottom: 0.62rem;
}

p {
    font-size: 1.09rem;
    color: var(--dark-color);
    margin-bottom: 1.09rem;
}

/* Cards */
.service-card, .price-card, .feature-card, .case-card, .career-card, .info-card, .review-card, .blog-card {
    background: white;
    border-radius: 13px;
    padding: 2rem;
    box-shadow: 0 8px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover, .case-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.price-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.price {
    font-size: 2.11rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Team */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.59rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    background: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 55%;
}

.timeline-year {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.09rem;
}

/* Contact Form */
.contact-form .form-control {
    border: 2px solid var(--accent-light);
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(146, 71, 8, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Contact Info */
.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* FAQ */
.accordion-button {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(155, 66, 25, 0.25);
}

/* Gallery */
.gallery-section img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #81766a;
    color: var(--light-color);
}

.footer h5 {
    color: var(--accent-light);
    margin-bottom: 1.09rem;
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-light);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--accent-light);
    margin-top: 79.00px;
}

.breadcrumb-icon {
    height: 20px;
    width: auto;
}

/* Swiper Styles */
.testimonials-swiper {
    padding: 2rem 0;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        left: 40px !important;
    }
    
    .hero-content h1 {
        font-size: 2.11rem;
    }
    
    .hero-content h2 {
        font-size: 1.25rem;
    }
    
    .price-card.featured {
        transform: none;
    }
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
} 


/* 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);
}

.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;
    }
}
