/* Custom CSS untuk Senderaja.com */

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
} */

/* Navigation */
/* .navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
} */

/* .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
} */

/* .nav-link:hover::after {
    width: 100%;
} */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #020a2b 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* .hero-section::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
} */

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
}

/* Buttons */
/* .btn {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
} */

/* .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
} */

/* .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
} */

/* .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
} */

/* .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
} */

/* Cards */
/* .card {
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
} */

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* .card-body {
    padding: 2rem;
} */

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-icon.text-warning {
    background: linear-gradient(45deg, var(--accent-color), #f97316);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-icon.text-success {
    background: linear-gradient(45deg, var(--success-color), #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Contact Icons */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}

/* Tracking Section */
/* #tracking {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
} */

/* #tracking .card {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

/* Form Controls */
/* .form-control {
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
} */

/* .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-control-lg {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
} */

/* Badges */
/* .badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
} */

/* Sections */
/* section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
} */

/* Footer */
/* footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
}

footer a:hover {
    color: white !important;
    text-decoration: none;
} */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* @keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    /* .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    } */
    
    /* .card-body {
        padding: 1.5rem;
    } */
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    /* .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    } */
}

/* Smooth Scrolling */
/* html {
    scroll-behavior: smooth;
} */

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 