/* KEPUS Premium Design Enhancements */

/* Modern Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Premium Card Shadows */
.welcome-item,
.service-card,
.footer-widget,
.team-member,
.blog-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-item:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(245, 92, 35, 0.15);
}

/* Smooth Gradient Overlays */
.img-holder .overlay {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 0%, rgba(245, 92, 35, 0.85) 100%);
    transition: opacity 0.4s ease;
}

.img-holder:hover .overlay {
    opacity: 0.95;
}

/* Premium Buttons */
.dont-btn,
.thm-btn,
button[type="submit"] {
    background: linear-gradient(135deg, #F55C23 0%, #e04915 100%);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(245, 92, 35, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dont-btn::before,
.thm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.dont-btn:hover::before,
.thm-btn:hover::before {
    left: 100%;
}

.dont-btn:hover,
.thm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 92, 35, 0.4);
}

/* Modern Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #F55C23;
    box-shadow: 0 0 0 4px rgba(245, 92, 35, 0.1);
    outline: none;
}

/* Premium Section Backgrounds */
.welcome-seciton,
.services-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Animated Underlines for Links */
.footer-links a,
.navigation a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F55C23;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Premium Page Titles */
.page-title {
    background: linear-gradient(135deg, #0A2540 0%, #1a3a5a 100%);
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Premium Team Cards */
.team-member {
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.team-member img {
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.08);
}

/* Modern Social Icons */
.social-links a {
    background: linear-gradient(135deg, #0A2540 0%, #1a3a5a 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #F55C23 0%, #e04915 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 92, 35, 0.3);
}

/* Premium Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Glassmorphism Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Premium Hover Effects for Images */
img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Page Transitions */
.page-wrapper {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Premium Dividers */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F55C23 0%, #e04915 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Modern Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '→';
    color: rgba(255, 255, 255, 0.6);
}

/* Premium Contact Info */
.contact-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding-left 0.3s ease;
}

.contact-info-list li:hover {
    padding-left: 8px;
}

/* Smooth Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out;
}

/* Premium Newsletter Form */
.newsletter-form {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    border-radius: 8px;
    padding-right: 120px;
}

.newsletter-form button {
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Modern Scroll to Top Button */
.scroll-to-top {
    background: linear-gradient(135deg, #F55C23 0%, #e04915 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 92, 35, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(245, 92, 35, 0.4);
}

/* Premium Service Detail Pages */
.service-detail-section h2 {
    position: relative;
    padding-bottom: 15px;
}

.service-detail-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F55C23 0%, #e04915 100%);
    border-radius: 2px;
}

/* Modern List Styling */
.service-detail-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.service-detail-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F55C23;
    font-weight: 700;
    font-size: 16px;
}

/* Premium Sidebar */
.service-detail-section .col-md-4>div {
    transition: all 0.3s ease;
}

.service-detail-section .col-md-4>div:hover {
    transform: translateY(-4px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {

    .welcome-item:hover,
    .service-card:hover {
        transform: translateY(-4px);
    }

    .dont-btn,
    .thm-btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Premium Focus States */
*:focus-visible {
    outline: 2px solid #F55C23;
    outline-offset: 2px;
}

/* Smooth Color Transitions */
* {
    transition-property: color, background-color, border-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Premium Header Enhancement */
.main-header {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.fixed-header {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}